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
/
bb-slp-55.c
blob
57a042b0ba57404428c55305127a2ef60f8ab1e0
1
/* { dg-do compile } */
2
3
typedef
struct
{
4
int
a
;
5
int
b
;
6
int
c
;
7
int
d
;
8
}
e
;
9
e
*
f
;
10
int
g
;
11
void
h
() {
12
e
*
i
;
13
if
(
g
) {
14
i
->
c
=
f
[
g
].
b
;
15
i
->
d
=
f
[
g
].
a
;
16
}
else
17
i
->
c
=
i
->
d
=
0
;
18
}