From: Richard Stallman Date: Fri, 27 Mar 1992 23:47:15 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: misc/cutover-egcs-0~13329 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eec2995b299ee079eaaa66cd99989dcff981ee84;p=thirdparty%2Fgcc.git *** empty log message *** From-SVN: r602 --- diff --git a/gcc/calls.c b/gcc/calls.c index 529c5bfe22b8..023e33791901 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -447,8 +447,6 @@ expand_call (exp, target, ignore, modifier) int is_longjmp; /* Nonzero if this is a call to an inline function. */ int is_integrable = 0; - /* Nonzero if this is a call to __builtin_new. */ - int is_builtin_new; /* Nonzero if this is a call to a `const' function. Note that only explicitly named functions are handled as `const' here. */ int is_const = 0; @@ -665,11 +663,6 @@ expand_call (exp, target, ignore, modifier) is_longjmp = 1; } - is_builtin_new - = (name != 0 - && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 13 - && (!strcmp (name, "__builtin_new"))); - if (may_be_alloca) current_function_calls_alloca = 1; @@ -1459,14 +1452,6 @@ expand_call (exp, target, ignore, modifier) if (is_volatile || is_longjmp) emit_barrier (); - /* For calls to __builtin_new, note that it can never return 0. - This is because a new handler will be called, and 0 it not - among the numbers it is supposed to return. */ -#if 0 - if (is_builtin_new) - emit_note (name, NOTE_INSN_BUILTIN_NEW); -#endif - /* If value type not void, return an rtx for the value. */ /* If there are cleanups to be called, don't use a hard reg as target. */