aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/anew1.C
blob: d51293658230596dde177b3ce7f620d8c448ed27 (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
// { dg-do run }
// { dg-skip-if "requires hosted libstdc++ for stdlib malloc" { ! hostedlib } }

// 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>

int* allocate(int n)
{
  void *p;
  p = malloc(n * sizeof (int));
  memset (p, 0xff, n * sizeof(int));
  return new (p) int[n]();
}

int main()
{
  const int n = 17;
  int* p = allocate(n);
  for (int i = 0; i < n; ++i)
    if (p[i] != 0)
      abort ();
  exit (0);
}