Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr23604.c
blob: 4c2b80d56ca8d51cd7f730df585463cf4311aa30 [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
int
g
(
int
i
,
int
j
)
{
if
(
i
>-
1
)
if
(
i
<
2
)
{
if
(
i
!=
j
)
{
if
(
j
!=
0
)
return
0
;
}
}
return
1
;
}
int
main
(
void
)
{
if
(!
g
(
1
,
0
))
abort
();
return
0
;
}