Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.target / i386 / pr40906-1.c
blob77e7c9b1eafad25d1789856a76b2ea8c9b9467fe
1 /* { dg-do run } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-O2 -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpush-args -mno-accumulate-outgoing-args" } */
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;