Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / abi / mangle16.C
blob1f3039f868200426987ad3d28d966b749f21f7ed
1 // { dg-options "-fabi-version=0" }
3 enum E { e = 3 };
5 template <int I> struct S {};
7 template <int I> void f (S<e + 1>) {}
8 template void f<7>(S<e + 1>);
10 template <int I> void g (S<e>) {}
11 template void g<7>(S<e>);
13 template <int I> void h (S<I + 1>) {}
14 template void h<7>(S<7 + 1>);
16 // { dg-final { scan-assembler _Z1fILi7EEv1SILi4EE } }
17 // { dg-final { scan-assembler _Z1gILi7EEv1SILi3EE } }
18 // { dg-final { scan-assembler _Z1hILi7EEv1SIXplT_Li1EEE } }