Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr24142.c
blob: eed3e8bc67934079f3423ba334d7e1002661f580 [
file
] [
log
] [
blame
]
void
abort
(
void
);
int
f
(
int
a
,
int
b
)
{
if
(
a
==
1
)
a
=
0
;
if
(
b
==
0
)
a
=
1
;
if
(
a
!=
0
)
return
0
;
return
1
;
}
int
main
(
void
)
{
if
(
f
(
1
,
1
)
!=
1
)
abort
();
return
0
;
}