blob: 9bb64ea4ea70dda96d2df5dbaadb7befc025f1be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// { dg-do run }
// PR 11228: array operator new, with zero-initialization and a variable sized array.
// Regression test for PR
// Author: Matt Austern <austern@apple.com>
#include <new>
#include <stdlib.h>
#include <string.h>
struct X
{
int a;
double b;
};
X* allocate(int n)
{
void *p;
p = malloc(n * sizeof (X));
memset (p, 0xff, n * sizeof(X));
return new (p) X[n]();
}
int main()
{
const int n = 17;
X* p = allocate(n);
for (int i = 0; i < n; ++i)
if (p[i].a != 0 || p[i].b != 0.0)
abort ();
exit (0);
}
|