URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [new.C] - Rev 12
Compare with Previous | Blame | View Log
// { dg-do assemble }
// Bug: new doesn't make sure that the count is an integral value.
#include <new>
extern "C" int printf (const char *, ...);
extern "C" void *malloc (size_t);
size_t s;
void * operator new (size_t siz) throw (std::bad_alloc) {
if (s == 0)
s = siz;
else
s = (s != siz);
return malloc (siz);
}
int main()
{
s = 0;
float f = 3;
int* b1 = new int[(int)f];
int* b2 = new int[f]; // { dg-error "" } new requires integral size
return s;
}