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
/
tree-ssa
/
ssa-fre-18.c
blob
c7349cfbc9bc1f82c83bfbfb88d4c08b96d005cc
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1" } */
3
4
struct
a
5
{
6
union
7
{
8
int
a
;
9
int
b
;
10
};
11
union
12
{
13
int
c
;
14
int
d
;
15
};
16
};
17
18
int
f
(
struct
a
*
c
)
19
{
20
int
d
=
c
->
a
;
21
c
->
c
=
1
;
22
return
c
->
a
+
d
;
23
}
24
25
/* We should have CSEd the load from c->a. */
26
27
/* { dg-final { scan-tree-dump-times "c_.*\\\.a" 1 "fre1" } } */