Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr99122-1.c
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
);
}