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
Add missing SLP discovery for CFN[_MASK][_LEN]_SCATTER_STORE
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
loop-1.c
blob
c3cc715569b585242bc36590965fa670763adbf6
1
void
abort
(
void
);
2
void
exit
(
int
);
3
4
int
5
main
(
void
)
6
{
7
int
i
,
j
,
k
[
3
];
8
9
j
=
0
;
10
for
(
i
=
0
;
i
<
3
;
i
++)
11
{
12
k
[
i
] =
j
++;
13
}
14
15
for
(
i
=
2
;
i
>=
0
;
i
--)
16
{
17
if
(
k
[
i
] !=
i
)
18
abort
();
19
}
20
21
exit
(
0
);
22
}