diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-27 23:47:15 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-27 23:47:15 +0000 |
commit | eec2995b299ee079eaaa66cd99989dcff981ee84 (patch) | |
tree | 7d5403a16f4cc03cc39c5a0dda934f57a5664131 /gcc/calls.c | |
parent | 8fd297fb3b1da2c0c2c1704467734f2dee3d94c5 (diff) | |
download | gcc-eec2995b299ee079eaaa66cd99989dcff981ee84.zip gcc-eec2995b299ee079eaaa66cd99989dcff981ee84.tar.gz gcc-eec2995b299ee079eaaa66cd99989dcff981ee84.tar.bz2 |
*** empty log message ***
From-SVN: r602
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 529c5bf..023e337 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. */ |