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
c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-dse-9.c
blob
ae48ddd51520c1e21a412a1481fd074586e480da
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-dse1-vops" } */
3
4
struct
{
int
a
,
b
; }
soup1
,
soup2
;
5
void
6
foo
()
7
{
8
soup1
=
soup2
;
9
soup1
.
a
=
66
;
10
soup1
.
b
=
77
;
11
}
12
13
/* We should eliminate the first assignment. */
14
/* { dg-final { scan-tree-dump-times "VDEF" 2 "dse1" } } */