diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-05-13 14:04:15 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-05-13 07:04:15 -0700 |
commit | 92d4501f96d2e4faaced90c19ca3b986c0875366 (patch) | |
tree | 840abe7eaa9ab57ad418f30aac580be8cbd04489 /gcc/varasm.c | |
parent | d6cc54f65926f5b8464efad260be16eddec94315 (diff) | |
download | gcc-92d4501f96d2e4faaced90c19ca3b986c0875366.zip gcc-92d4501f96d2e4faaced90c19ca3b986c0875366.tar.gz gcc-92d4501f96d2e4faaced90c19ca3b986c0875366.tar.bz2 |
Patch to fix g++.other/local1.C.
* varasm.c (make_decl_rtl): Revert April 1 change.
* alpha/alpha.h, alpha/win-nt.h, arm/arm.h, i386/unix.h, i960/i960.h,
m68k/linux.h, pa/pa.h, sparc/sparc.h, vax/vax.h (ASM_OUTPUT_MI_THUNK):
Get function name from the SYMBOL_REF in the DECL_RTL, not from
DECL_ASSEMBLER_NAME.
* i386/winnt.c (gen_stdcall_suffix): Comment for questionable use of
DECL_ASSEMBLER_NAME.
From-SVN: r19723
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index afdee7b..867ae1f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -741,16 +741,6 @@ make_decl_rtl (decl, asmspec, top_level) ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno); name = obstack_copy0 (saveable_obstack, label, strlen (label)); var_labelno++; - -#if 0 - /* ??? This results in incorrect stabs debug info for static - local variables. */ - /* We've changed the name by which this entity is - known. In order that we can generate - correct references to it, we update its - DECL_ASSEMBLER_NAME. */ - DECL_ASSEMBLER_NAME (decl) = get_identifier (name); -#endif } if (name == 0) |