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
2018-04-09 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr44393.c
blob
906d5932a0fbff120c91cab425320ab069c22d12
1
/* { dg-do compile } */
2
/* { dg-options "-Os -ftree-loop-distribution" } */
3
4
int
i
;
5
void
foo
()
6
{
7
int
**
pp
=
0
, *
p
=
0
;
8
while
(--
i
)
9
{
10
*
p
++ =
0
;
11
*
pp
++ =
p
;
12
}
13
i
= *
p
;
14
}
15