Commit 3143d517 by Giovanni Bajo

decl.c (grok_op_properties): Reject [de-]allocation functions declared in a…

decl.c (grok_op_properties): Reject [de-]allocation functions declared in a namespace, or declared as static.

	* decl.c (grok_op_properties): Reject [de-]allocation functions
	declared in a namespace, or declared as static.

	* g++.dg/lookup/new2.C: New test.
	* g++.old-deja/g++.ns/new1.C: Remove (ill-formed).

From-SVN: r84567
parent 2176cbb5
2004-07-12 Giovanni Bajo <giovannibajo@gcc.gnu.org>
* decl.c (grok_op_properties): Reject [de-]allocation functions
declared in a namespace, or declared as static.
2004-07-12 Nathan Sidwell <nathan@codesourcery.com>
* cp-tree.h (make_binfo): Remove.
......
......@@ -8508,6 +8508,25 @@ grok_op_properties (tree decl, int friendp, bool complain)
}
}
/* [basic.std.dynamic.allocation]/1:
A program is ill-formed if an allocation function is declared
in a namespace scope other than global scope or declared static
in global scope.
The same also holds true for deallocation functions. */
if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR
|| operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
{
if (DECL_NAMESPACE_SCOPE_P (decl))
{
if (CP_DECL_CONTEXT (decl) != global_namespace)
error ("`%D' may not be declared within a namespace", decl);
else if (!TREE_PUBLIC (decl))
error ("`%D' may not be declared as static", decl);
}
}
if (operator_code == NEW_EXPR || operator_code == VEC_NEW_EXPR)
TREE_TYPE (decl) = coerce_new_type (TREE_TYPE (decl));
else if (operator_code == DELETE_EXPR || operator_code == VEC_DELETE_EXPR)
......
2004-07-12 Giovanni Bajo <giovannibajo@gcc.gnu.org>
* g++.dg/lookup/new2.C: New test.
* g++.old-deja/g++.ns/new1.C: Remove (ill-formed).
2004-07-12 David Billinghurst (David.Billinghurst@riotinto.com)
* gfortran.dg/g77/12002.f: Copy from g77.f-torture/compile .
......
// { dg-do compile }
// Reject [de-]allocation functions declared in a namespace, or
// declared as static.
namespace A {
void* operator new(unsigned s, int* p); // { dg-error "namespace" }
void operator delete(void*); // { dg-error "namespace" }
}
static void* operator new(unsigned s, int* p); // { dg-error "static" }
static void operator delete(void*); // { dg-error "static" }
// { dg-do run }
// Test whether N::operator new is different from ::operator new
#include <new>
#include <cstdlib>
bool success;
namespace N{
void* operator new(size_t n){
success = true;
return std::malloc(n);
}
}
void *operator new(size_t n)throw(std::bad_alloc)
{
static bool entered = false;
if(entered)
throw std::bad_alloc();
entered = true;
void *result = N::operator new(n);
entered = false;
return result;
}
int main()
{
try{
new int;
}catch(...){
return 1;
}
return success?0:1;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment