Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / abi / mangle24.C
blob1f5c5c1c3de3bd693aa467334e6921d83f5da21e
1 // Test mangling of __float80.
2 // The C++ ABI document says __float80 is mangled as "e".  It
3 // also says that "long double" is mangled as "e", so these conflict on
4 // ia64-hpux where "long double" is "e" and __float80 is "u9__float80".
5 // Origin: Joseph Myers <joseph@codesourcery.com>
6 // { dg-do compile { target i?86-*-* x86_64-*-* ia64-*-* } }
7 // { dg-options "" }
8 // { dg-final { scan-assembler "_Z1fe" { target i?86-*-* x86_64-*-* } } }
9 // { dg-final { scan-assembler "_Z1fe" { target { ia64-*-* && { ! "ia64-*-hpux*" } } } } }
10 // { dg-final { scan-assembler "_Z1fu9__float80" { target ia64-*-hpux* } } }
12 int f(__float80 x) { return 0; }