* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / builtins1.C
blobee714d715be48a5b1a919513beaa462b41251ed1
1 // { dg-do run  }
2 // { dg-options "-O2" }
3 // Test whether this builtin minimally works in G++.
4 // Origin: Kaveh Ghazi Jan 16, 2001
5 // Copyright (C) 2001 Free Software Foundation.
6 //
8 namespace std 
10   extern "C" void abort (void);
13 int main ()
15   using namespace std;
16   
17   if (::__builtin_strlen ("hello") != 5)
18     abort ();
19   
20   return 0;