blob: c14bbfa3a4fa3ff937d66a605992fd5d89215c56 [file] [log] [blame]
/* { dg-do run } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -fomit-frame-pointer -mpush-args -mno-accumulate-outgoing-args" } */
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;
}