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-61.c
blob
3323a2bb2d9797f5e6af09ce8bdcb141e5de739c
1
/* { dg-do compile } */
2
3
struct
a
{
4
enum
{
b
,
c
}
d
;
5
unsigned
e
;
6
unsigned
f
;
7
};
8
void
j
(
struct
a
*
a
,
int
i
,
int
h
)
9
{
10
unsigned
f
=
a
->
f
;
11
switch
(
a
->
d
)
12
while
(
1
)
13
{
14
if
(
i
)
15
{
16
case
b
:
17
if
(
h
)
18
goto
k
;
19
}
20
else
21
f
=
0
;
22
case
c
:;
23
}
24
k
:
25
a
->
e
=
a
->
f
=
f
;
26
}