repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr15349.c
blob
5c440e60775117b4107b28f089a4f3a9dc37137c
1
/* PR 15349. Merge two PHI nodes. */
2
/* { dg-do compile } */
3
/* { dg-options "-O1 -fdump-tree-mergephi" } */
4
5
int
6
foo
(
int
a
,
int
b
)
7
{
8
int
t
;
9
10
if
(
b
)
11
{
12
if
(
a
)
13
t
=
3
;
14
else
15
t
=
5
;
16
17
a
=
0
;
18
}
19
else
20
t
=
7
;
21
22
return
t
;
23
}
24
25
/* { dg-final { scan-tree-dump-times "PHI" 1 "mergephi"} } */
26
/* { dg-final { cleanup-tree-dump "mergephi" } } */