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
/
pr85793.c
blob
9b5d5182002aab0749e92e2a90e1c5f26aa2cf66
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_perm } */
3
4
int
a
,
c
,
d
;
5
long
b
[
6
];
6
void
fn1
() {
7
for
(;
a
<
2
;
a
++) {
8
c
=
0
;
9
for
(;
c
<=
5
;
c
++)
10
d
&=
b
[
a
*
3
];
11
}
12
}