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
/
struct-aliasing-1.c
blob
7757e5e1795521c376632325141d3fa055b18bcd
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-fre1-details" } */
3
4
struct
S
{
float
f
; };
5
int
__attribute__
((
noinline
))
6
foo
(
float
*
r
,
struct
S
*
p
)
7
{
8
int
*
q
= (
int
*)&
p
->
f
;
9
int
i
= *
q
;
10
*
r
=
0.0
;
11
return
i
+ *
q
;
12
}
13
14
/* { dg-final { scan-tree-dump "Replaced\[^\n\]*with i_." "fre1" } } */