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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.old-deja/] [g++.bugs/] [900208_04.C] - Diff between revs 149 and 154

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

Rev 149 Rev 154
// { dg-do assemble  }
// { dg-do assemble  }
// g++ 1.36.1 bug 900208_04
// g++ 1.36.1 bug 900208_04
// The Cfront 2.0 reference manual (5.3.3) says "This type must be an
// The Cfront 2.0 reference manual (5.3.3) says "This type must be an
// object type; functions cannot be allocated this way...".
// object type; functions cannot be allocated this way...".
// g++ fails to detect (at compile time) cases where an attempt is made to
// g++ fails to detect (at compile time) cases where an attempt is made to
// deallocate a function using delete.
// deallocate a function using delete.
// Cfront 2.0 passes this test.
// Cfront 2.0 passes this test.
// keywords: operator delete, function types
// keywords: operator delete, function types
typedef void (func_type) ();
typedef void (func_type) ();
void global_function_1 (func_type *p)
void global_function_1 (func_type *p)
{
{
  delete p;             // { dg-error "" } caught by Cfront 2.0 but not by g++ 1.36.1
  delete p;             // { dg-error "" } caught by Cfront 2.0 but not by g++ 1.36.1
}
}
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.