* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / sibcall1.C
blobfa9e37b378c7ed8e2e78e1df4d5373064fc22d36
1 // { dg-do run  }
2 // { dg-options "-O2" }
4 #include <iostream>
6 std::ostream& foo (const char *x, std::ostream &y)
8   return y << "" << x;
11 int main ()
13   foo ("", std::cout);