* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / linkage7.C
blobd1470a9ed025694c0db2d1b54f09531763b2342c
1 // { dg-do link  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 namespace N {
5   extern "C" int i;
7   void f () {
8     i = 3;
9   }
12 int i;
14 int main () { N::f (); }