* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / packed12.C
blob2ad14de102da92efedb5ce501ba19d24624d36a5
1 // PR c++/80972
3 struct A { int i; };
4 struct B { A a; } __attribute__((packed));
6 A a = B().a;