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++.old-deja
/
g++.other
/
anon8.C
blob
fb26d73132e2718c061a66d0ebc9cfb8b378a4cf
1
// { dg-do assemble }
2
3
struct B
4
{
5
int a;
6
B & operator= (const B &);
7
};
8
9
struct A
10
{
11
union {
12
int a;
13
};
14
B b;
15
};
16
17
A x;
18
19
void foo (const A &y)
20
{
21
x = y;
22
}