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
/
pr95495.c
blob
683f0f26a824f4335008b01779c244486c2ed59d
1
/* { dg-do compile } */
2
3
typedef
struct
{
4
int
a
;
5
int
b
;
6
}
c
;
7
int
d
,
f
,
g
;
8
c e
[
4
];
9
void
10
h
()
11
{
12
for
(;
f
;
f
++) {
13
g
+=
e
[
f
].
a
>>
1
|
e
[
f
].
a
&
1
;
14
d
+=
e
[
f
].
b
>>
1
|
e
[
f
].
b
&
1
;
15
}
16
}
17
18
/* { dg-final { scan-tree-dump-times "VEC_PERM_EXPR" 0 "vect" } } */