testsuite: suppress mangling compatibility aliases
[official-gcc.git] / gcc / testsuite / g++.dg / abi / mangle53.C
blob54090399d32ae7fea085e083a176bac856db81b9
1 // { dg-do compile { target c++11 } }
2 // { dg-additional-options -fabi-compat-version=0 }
4 bool b;
5 int i;
6 // { dg-final { scan-assembler "_Z1fIiEDTquL_Z1bEfp_twLi42EET_" } }
7 template <class T> auto f (T t) -> decltype(b?t:throw 42) { return i; }
8 // { dg-final { scan-assembler "_Z2f2IiEDTquL_Z1bEfp_trET_" } }
9 template <class T> auto f2 (T t) -> decltype(b?t:throw) { return i; }
11 int main()
13   f(0);
14   f2(0);