OSDN Git Service

PR testsuite/20772
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / mangle24.C
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-options "-mmmx" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
9 // { dg-final { scan-assembler "_Z1fe" { target i?86-*-* x86_64-*-* } } } */
10 // { dg-final { scan-assembler "_Z1fe" { target { ia64-*-* && { ! "ia64-*-hpux*" } } } } } */
11 // { dg-final { scan-assembler "_Z1fu9__float80" { target ia64-*-hpux* } } } */
12
13 int f(__float80 x) { return 0; }