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
2013-10-21 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr56034.c
blob
f2b5d3784ea37391d27f77ee93c052de041a0a45
1
/* { dg-do compile } */
2
/* { dg-options "-ftree-loop-distribution" } */
3
4
int
a
,
b
, *
p
;
5
6
void
f
(
void
)
7
{
8
int
*
q
;
9
10
while
(
b
++)
11
{
12
int
i
;
13
p
= &
i
;
14
a
= *
q
;
15
}
16
17
if
(
a
)
18
for
(;;
b
++);
19
}