Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960219-1.c
blob: a134941a0f58a75f89d913617159a87e6e87e345 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
void
f
(
int
i
)
{
if
(((
1
<<
i
)
&
1
)
==
0
)
abort
();
}
int
main
(
void
)
{
f
(
0
);
exit
(
0
);
}