blob: 5dfc0a85ad41aa205a5e4a8a176a0a7e86add140 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -g -w" } */
void f ()
{
int n = 5;
struct { char a[n]; } x;
g (x, x);
}
int g (double x, double y)
{
return __builtin_isgreater (x, y);
}