repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000819-1.c
blob
e1c2769c08d481dc481b6362d8938d9b4c93efa3
1
int
a
[
2
] = {
2
,
0
};
2
3
void
foo
(
int
*
sp
,
int
cnt
)
4
{
5
int
*
p
, *
top
;
6
7
top
=
sp
;
sp
-=
cnt
;
8
9
for
(
p
=
sp
;
p
<=
top
;
p
++)
10
if
(*
p
<
2
)
exit
(
0
);
11
}
12
13
int
main
()
14
{
15
foo
(
a
+
1
,
1
);
16
abort
();
17
}