Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20050104-1.c
blob: 6083e9c0686f006e4e0572df3e6e155573dced28 [
file
] [
log
] [
blame
]
/* PR tree-optimization/19060 */
void
abort
(
void
);
static
long
long
min
()
{
return
-
__LONG_LONG_MAX__
-
1
;
}
void
foo
(
long
long
j
)
{
if
(
j
>
10
||
j
<
min
())
abort
();
}
int
main
(
void
)
{
foo
(
10
);
return
0
;
}