Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / i386 / pr40906-2.c
blobf0eda001cd7483049b06d6ec0bb5ee507e51914a
1 /* { dg-do run } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-O2 -Wno-psabi -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpush-args -mno-accumulate-outgoing-args -m128bit-long-double" } */
5 void abort (void);
7 void __attribute__((noinline))
8 f (long double a)
10 if (a != 1.23L)
11 abort ();
14 int __attribute__((noinline))
15 g (long double b)
17 f (b);
18 return 0;
21 int
22 main (void)
24 g (1.23L);
25 return 0;