blob: 5dfc0a85ad41aa205a5e4a8a176a0a7e86add140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { 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);
}
|