* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / cookie1.C
blobdefc4887b5372e55c6d68241ec0c972393be0d65
1 // { dg-options "-fabi-version=0" }
3 void *operator new[](__SIZE_TYPE__, void *);
5 struct A {
6     ~A(){}
7 };
9 int main()
11   A * a = (A*) new char[20];
12   A  * b = new(a) A[3];
13   if (a != b)
14     return 1;