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
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr25857.C
blob
4e6858fe1958b24222faa8b561bcb55f4fc44b99
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
int foo();
5
int i;
6
7
struct A
8
{
9
~A() { if (this != (A*)(&i)) foo(); }
10
};
11
12
struct B
13
{
14
A a1, a2, a3, a4;
15
~B() { foo(); }
16
};
17
18
B b;