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
match.pd: Fold vec_perm with view_convert
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-fre-26.c
blob
05ce9af48c75a0744f0e4b53f2a366e3b0e159a1
1
/* { dg-do compile } */
2
/* { dg-options "-O -fno-tree-sra -fdump-tree-fre1-details" } */
3
4
union
U
{
5
float
f
;
6
int
i
;
7
};
8
9
int
foo
(
union
U
*
p
)
10
{
11
union
U u
;
12
p
->
f
=
0.0
;
13
u
= *
p
;
14
return
u
.
i
;
15
}
16
17
/* avr has 16 bit int and 32 bit float */
18
/* { dg-final { scan-tree-dump "Replaced u.i with 0 in" "fre1" {xfail avr-*-* } } } */