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
/
loop-14.c
blob
8c9929276bc57ced227a710e2922dcf6a74ca9c1
1
int
a3
[
3
];
2
3
void
f
(
int
*
a
)
4
{
5
int
i
;
6
7
for
(
i
=
3
; --
i
;)
8
a
[
i
] =
42
/
i
;
9
}
10
11
int
12
main
()
13
{
14
f
(
a3
);
15
16
if
(
a3
[
1
] !=
42
||
a3
[
2
] !=
21
)
17
abort
();
18
19
exit
(
0
);
20
}