Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000819-1.c
blob: e1c2769c08d481dc481b6362d8938d9b4c93efa3 [
file
] [
log
] [
blame
]
int
a
[
2
]
=
{
2
,
0
};
void
foo
(
int
*
sp
,
int
cnt
)
{
int
*
p
,
*
top
;
top
=
sp
;
sp
-=
cnt
;
for
(
p
=
sp
;
p
<=
top
;
p
++)
if
(*
p
<
2
)
exit
(
0
);
}
int
main
()
{
foo
(
a
+
1
,
1
);
abort
();
}