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
PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-fre-59.c
blob
952934bccd5df92b4ca99c087df74a1cfe2c2748
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1" } */
3
4
int
i
;
5
int
foo
(
int
b
)
6
{
7
int
j
;
8
i
=
1
;
9
if
(
b
)
10
j
=
i
;
11
return
i
-
j
;
12
}
13
14
/* { dg-final { scan-tree-dump "return 0;" "fre1" } } */