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
2018-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr71947-1.c
blob
ac8271cc574c28001bdb77ad56ac6ea22d64e36d
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-vrp -fdump-tree-dom-details" } */
3
4
5
int
f
(
int
x
,
int
y
)
6
{
7
int
ret
;
8
9
if
(
x
==
y
)
10
ret
=
x
^
y
;
11
else
12
ret
=
1
;
13
14
return
ret
;
15
}
16
17
/* { dg-final { scan-tree-dump "Replaced redundant expr \[^\r\n\]* with .0." "dom2" } } */
18
19