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
testsuite: Revert to the original version of pr100056.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr93767.c
blob
5f95d7bd35b267d987be1cd9d41c8b5687200484
1
int
2
main
()
3
{
4
int
a
[
10
],
b
;
5
for
(
b
=
6
;
b
>=
3
;
b
--)
6
{
7
a
[
b
] =
1
;
8
a
[
b
+
2
] =
a
[
3
];
9
}
10
if
(
a
[
5
] !=
1
)
11
__builtin_abort
();
12
return
0
;
13
}