rs6000: Correct the function code for _AMO_LD_DEC_BOUNDED
[official-gcc.git] / gcc / testsuite / g++.dg / abi / mangle10.C
blobfcbb815be8fb6d1a1376d5b2b490518c5455c687
1 // { dg-options "-fabi-version=0 -fabi-compat-version=0" }
3 template <template <typename> class Q>
4 void f (typename Q<int>::X) {}
6 template <typename Q>
7 struct S {
8   typedef int X;
9 };
11 template void f<S> (int);
13 // { dg-final { scan-assembler _Z1fI1SEvNT_IiE1XE } }