URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [init/] [new11.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/17670
// { dg-do run }
#include <cstdlib>
#include <new>
bool abort_new;
void *operator new[](size_t bytes)
#if __cplusplus <= 199711L
throw (std::bad_alloc)
#endif
{
if (abort_new)
abort();
return operator new (bytes);
}
struct X {};
int main () {
// Do not abort until main is running in case startup code uses
// operator new[].
abort_new = true;
new (X);
}
Go to most recent revision | Compare with Previous | Blame | View Log