Commit a5c414e0 by J"orn Rennecke Committed by Joern Rennecke

dwarf2asm.c (dw2_output_indirect_constant_1): Take user_label_prefix into account.

	* dwarf2asm.c (dw2_output_indirect_constant_1): Take user_label_prefix
	into account.

From-SVN: r70322
parent f6dda651
2003-08-11 J"orn Rennecke <joern.rennecke@superh.com>
* dwarf2asm.c (dw2_output_indirect_constant_1): Take user_label_prefix
into account.
2003-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2003-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* builtins.c (expand_builtin_strcat): Optimize constant strings. * builtins.c (expand_builtin_strcat): Optimize constant strings.
......
...@@ -757,7 +757,7 @@ dw2_output_indirect_constant_1 (splay_tree_node node, ...@@ -757,7 +757,7 @@ dw2_output_indirect_constant_1 (splay_tree_node node,
sym = (const char *) node->key; sym = (const char *) node->key;
sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym); sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym);
if (USE_LINKONCE_INDIRECT) if (USE_LINKONCE_INDIRECT)
fprintf (asm_out_file, "\t.hidden DW.ref.%s\n", sym); fprintf (asm_out_file, "\t.hidden %sDW.ref.%s\n", user_label_prefix, sym);
assemble_variable ((tree) node->value, 1, 1, 1); assemble_variable ((tree) node->value, 1, 1, 1);
assemble_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); assemble_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
......
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