OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [anew2.C] - Rev 693

Compare with Previous | Blame | View Log

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

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

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

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.