* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / realloc.C
blob8b9c2c60887cbf0981ffdfecb26f181c288d03d8
1 // { dg-do assemble  }
2 // { dg-options "-Wno-builtin-declaration-mismatch" }
4 extern "C" void realloc();
6 class bug {
7 public:
8   void realloc(int foo,int bar);
9 };
11 void f() {
12   bug c;
13   c.realloc(50,50);