repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr23164.C
blob
2318a309cec42ef0b1fac56340f4dd5f278b1396
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
bool f();
4
struct S {
5
S();
6
~S();
7
};
8
void g() {
9
for (;;) {
10
S s1, s2, s3, s4, s5, s6;
11
if (f())
12
continue;
13
if (f())
14
return;
15
}
16
}