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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-fre-48.c
blob
5e74c78e7b03943a362913185c2d0e9fa98227b2
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1-details -fdisable-tree-ethread" } */
3
4
int
foo
(
int
i
)
5
{
6
if
(
i
)
7
{
8
if
(
i
)
9
return
1
;
10
else
11
return
0
;
12
}
13
return
0
;
14
}
15
16
/* { dg-final { scan-tree-dump "Removing unexecutable edge" "fre1" } } */