Commit a4dff5f3 by Mike Stump Committed by Mike Stump

varasm.c (assemble_name): Ensure we output the stripped name.

	* varasm.c (assemble_name): Ensure we output the stripped name.
Fixes s35520.C.

From-SVN: r38739
parent 1917ef85
2001-01-05 Mike Stump <mrs@wrs.com>
* varasm.c (assemble_name): Ensure we output the stripped name.
2001-01-05 Richard Henderson <rth@redhat.com> 2001-01-05 Richard Henderson <rth@redhat.com>
* dwarf2out.c (mem_loc_descriptor) [case MEM]: Revert 10-31 change. * dwarf2out.c (mem_loc_descriptor) [case MEM]: Revert 10-31 change.
......
...@@ -1789,7 +1789,7 @@ assemble_name (file, name) ...@@ -1789,7 +1789,7 @@ assemble_name (file, name)
if (name[0] == '*') if (name[0] == '*')
fputs (&name[1], file); fputs (&name[1], file);
else else
ASM_OUTPUT_LABELREF (file, name); ASM_OUTPUT_LABELREF (file, real_name);
} }
/* Allocate SIZE bytes writable static space with a gensym name /* Allocate SIZE bytes writable static space with a gensym name
......
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