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-pre-17.c
blob
a06f339f0bb0cb7735325745c8af3ab756156c3b
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-pre-stats -fno-tree-cselim" } */
3
4
typedef
union
{
5
int
i
;
6
float
f
;
7
}
U
;
8
9
int
foo
(
U
*
u
,
int
b
,
int
i
)
10
{
11
u
->
i
=
0
;
12
if
(
b
)
13
u
->
i
=
i
;
14
return
u
->
i
;
15
}
16
17
/* { dg-final { scan-tree-dump "Eliminated: 1" "pre" } } */