Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr97888-2.c
blob: 4f06ce6950cf5bd4da6e30e69d9fb34488d1bcab [
file
] [
log
] [
blame
]
/* PR tree-optimization/97888 */
__attribute__
((
noipa
))
void
foo
(
int
i
)
{
if
((
i
%
7
)
>=
0
)
{
if
(
i
>=
0
)
__builtin_abort
();
}
}
int
main
()
{
foo
(-
7
);
foo
(-
21
);
return
0
;
}