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
/
torture
/
ssa-fre-2.c
blob
5ce47d2158726d29973201006c7f1e76cfff8b7b
1
/* { dg-do run } */
2
3
int
x
;
4
int
main
()
5
{
6
int
i
=
0
;
7
x
=
0
;
8
if
(
x
)
9
{
10
for
(;
i
<
10
; ++
i
)
11
{
12
doit
:
13
x
=
i
;
14
}
15
}
16
if
(!
x
)
17
goto
doit
;
18
if
(
x
!=
9
)
19
__builtin_abort
();
20
return
0
;
21
}