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-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr55191.c
blob
568425ce038e90142d7e1ceae8c860f6d34c694c
1
/* PR tree-optimization/55191 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
a
,
b
;
6
7
void
f
(
void
)
8
{
9
b
=
a
||
b
;
10
11
for
(
a
=
0
;
a
<
2
;
a
++);
12
while
(
1
);
13
}
14