blob: 1e78c231d39d7f9a89b63fe7a62a4872f29d2dcf [file] [log] [blame]
/* { dg-do run } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-O2 -fomit-frame-pointer -fno-asynchronous-unwind-tables -mpush-args" } */
/* { dg-additional-options "-mno-accumulate-outgoing-args" { target { ! { *-*-mingw* *-*-cygwin* } } } } */
void abort (void);
void __attribute__((noinline))
f (long double a)
{
if (a != 1.23L)
abort ();
}
int __attribute__((noinline))
g (long double b)
{
f (b);
return 0;
}
int
main (void)
{
g (1.23L);
return 0;
}