* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static10.C
blob16b152453ee190cbc0ce22774f12e6d45aaca7cf
1 // { dg-do assemble  }
2 // { dg-options "-w" }
3 // Origin: Ulrich Drepper <drepper@cygnus.com>
5 struct st
7   int a;
8 };
10 int
11 foo (int a)
13   static const st i = { 0 };
15   if (i.a == a)
16     return 0;