* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / overload3.C
blobcf5ceeba198881efe36798a59a59095f28ed095b
1 // { dg-do link  }
3 void f(const int *);
4 void f(int *) {}
6 void f2(const volatile int *);
7 void f2(volatile int *) {}
9 int i;
11 int main()
13   f(&i);
14   f2(&i);
16