OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.bugs/] [900519_06.C] - Diff between revs 305 and 384

Only display areas with differences | Details | Blame | View Log

Rev 305 Rev 384
// { dg-do assemble  }
// { dg-do assemble  }
// g++ 1.37.1 bug 900519_06
// g++ 1.37.1 bug 900519_06
// g++ allows the type given in an invocation of operator new to be a
// g++ allows the type given in an invocation of operator new to be a
// reference type.
// reference type.
// Since pointers to reference types are illegal, the required return type
// Since pointers to reference types are illegal, the required return type
// from such an invocation (of operator new) is illegal, and thus (it seems)
// from such an invocation (of operator new) is illegal, and thus (it seems)
// the entire call to new should be treated as being illegal.
// the entire call to new should be treated as being illegal.
typedef int& int_ref;
typedef int& int_ref;
void test (int n)
void test (int n)
{
{
  new int&;             // { dg-error "" } missed
  new int&;             // { dg-error "" } missed
  new int_ref;          // { dg-error "" } missed
  new int_ref;          // { dg-error "" } missed
  new int&[n];              // { dg-error "" } missed
  new int&[n];              // { dg-error "" } missed
  new int_ref[n];       // { dg-error "" } missed
  new int_ref[n];       // { dg-error "" } missed
  new int&[3];              // { dg-error "" } missed
  new int&[3];              // { dg-error "" } missed
  new int_ref[3];       // { dg-error "" } missed
  new int_ref[3];       // { dg-error "" } missed
}
}
int main () { return 0; }
int main () { return 0; }
 
 

powered by: WebSVN 2.1.0

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