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
/
pr89430-7-comp-ref.c
blob
4fad2d1eb132ad650c946590f856902978e86c16
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-cselim -fdump-tree-cselim-details" } */
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 "Conditional store replacement" "cselim" } } */