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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr56436.c
blob
cae4d2a4bd291c650952cdb175280bdbe510c7bc
1
/* PR tree-optimization/56426 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
a
, *
c
;
6
7
void
8
f
(
void
)
9
{
10
int
b
=
0
;
11
12
for
(
a
=
0
;;
a
++)
13
if
(--
b
)
14
{
15
if
(
a
)
16
lbl
:
17
a
++;
18
19
c
= &
b
;
20
goto
lbl
;
21
}
22
}