* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / bitfld2.C
blob62a971363fb5196ec2c8e440730c8ecf06184ea6
1 // { dg-do assemble  }
2 // { dg-options "-funsigned-bitfields" }
3 // Origin: Mark Mitchell <mark@codesourcery.com>
5 typedef int i[4];
7 struct S {
8   i j:12; // { dg-error "" } array type as bitfield
9 };