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
Be careful about comdat boundary in ICF (PR ipa/82352).
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
loop2.C
blob
aee612ab510bdc36168a860903ceb8c6b040e63b
1
// PR middle-end/22484
2
// { dg-do compile }
3
// { dg-options "-O3" }
4
5
struct A { ~A(); };
6
typedef bool B;
7
8
bool foo();
9
10
bool bar(A&)
11
{
12
B b = true;
13
14
for (int i = 0; i < 2 && b; ++i)
15
b = foo();
16
17
return b;
18
}
19
20
void baz()
21
{
22
A a;
23
if (bar(a)) foo();
24
}