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
This commit is contained in:
parent
f6dda6511a
commit
a5c414e039
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* builtins.c (expand_builtin_strcat): Optimize constant strings.
|
||||
|
|
|
@ -757,7 +757,7 @@ dw2_output_indirect_constant_1 (splay_tree_node node,
|
|||
sym = (const char *) node->key;
|
||||
sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym);
|
||||
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_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue