Commit 86aff125 by Mike Stump

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

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

From-SVN: r38953
parent d24b8f53
......@@ -986,10 +986,6 @@ Sat Jan 6 00:09:34 2001 J"orn Rennecke <amylaar@redhat.com>
* pa.md (return, return_internal): Modify patterns to prevent regrename
mucking with the return pointer.
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>
* dwarf2out.c (mem_loc_descriptor) [case MEM]: Revert 10-31 change.
......
......@@ -1711,7 +1711,7 @@ assemble_name (file, name)
if (name[0] == '*')
fputs (&name[1], file);
else
ASM_OUTPUT_LABELREF (file, real_name);
ASM_OUTPUT_LABELREF (file, 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