URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [placement1.C] - Rev 853
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/11266
// We were expanding the same TARGET_EXPR twice, for placement new and
// delete.
void* operator new (__SIZE_TYPE__, void*) throw();
void operator delete (void*, void*) throw();
struct A { A(); };
void foo() { new(new A)A; }
Go to most recent revision | Compare with Previous | Blame | View Log