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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr86927.c
blob
794092bc4e4ec193be4a2bf5d996b835789910f6
1
#include
"tree-vect.h"
2
3
int
a
[
28
];
4
int
main
()
5
{
6
check_vect
();
7
a
[
4
] =
1
;
8
int
c
=
1
;
9
for
(
int
b
=
0
;
b
<
8
;
b
++)
10
if
(
a
[
b
])
11
c
=
0
;
12
if
(
c
)
13
abort
();
14
return
0
;
15
}