* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / new23.C
blobcedd898b3492da479ae92846e7c2fddeea17057f
1 // PR c++/33025
2 // { dg-do run }
3 // { dg-options "-O2" }
5 typedef __SIZE_TYPE__ size_t;
6 inline void *operator new (size_t, void *p) throw () { return p; }
7 extern "C" void abort ();
9 int
10 main()
12   const unsigned num = 10;
13   unsigned *data = new unsigned[2 * num];
14   unsigned *ptr = data;
15   for (unsigned i = 0; i < 2 * num; ++i)
16     (i % 2 == 0) ? new (ptr) unsigned (2) : new (ptr++) unsigned (1);
17   if (ptr - data != num)
18     abort ();
19   return 0;