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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [new3.C] - Rev 338

Compare with Previous | Blame | View Log

// { dg-do run  }
// { dg-options "-fcheck-new -pedantic -Wno-long-long" }
// PRMS Id: 6037

extern "C" void * malloc (__SIZE_TYPE__);

int ena = 0;

struct A {
  int i;
  A () { i = 2; }
  void * operator new (__SIZE_TYPE__ s)
  {
    if (ena)
      return 0;
    return malloc (s);
  }
};

struct B {
  int i;
  B () { i = 2; }
  void * operator new (__SIZE_TYPE__ s) throw()
  {
    if (ena)
      return 0;
    return malloc (s);
  }
};

int main ()
{
  ena = 1;
  A *ap = new A;
  B *bp = new B;
  
  return ap || bp ;
}

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.