OSDN Git Service

2007-08-17 Andrew Pinski <andrew_pinski@playstation.sony.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / expr / anew2.C
1 // { dg-do run }
2 // PR 11228: array operator new, with zero-initialization and a variable sized array.
3 // Regression test for PR 
4 // Author: Matt Austern <austern@apple.com>
5
6
7 #include <new>
8 #include <stdlib.h>
9 #include <string.h>
10
11 double* allocate(int n)
12 {
13   void *p;
14   p = malloc(n * sizeof (double));
15   memset (p, 0xff, n * sizeof(double));
16   return new (p) double[n]();
17 }
18
19 int main()
20 {
21   const int n = 17;
22   double* p = allocate(n);
23   for (int i = 0; i < n; ++i)
24     if (p[i] != 0.0)
25       abort ();
26   exit (0);
27 }