aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf2asm.c
diff options
context:
space:
mode:
authorJ"orn Rennecke <joern.rennecke@superh.com>2003-08-11 13:45:50 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2003-08-11 14:45:50 +0100
commita5c414e0390fa222ffdc93b0b093fd3b6af3db75 (patch)
treed02364d94b9531a98295f5fd97914c8bc25a7bd3 /gcc/dwarf2asm.c
parentf6dda6511ae7d435163663a2ce96ac1c251dfe1e (diff)
downloadgcc-a5c414e0390fa222ffdc93b0b093fd3b6af3db75.zip
gcc-a5c414e0390fa222ffdc93b0b093fd3b6af3db75.tar.gz
gcc-a5c414e0390fa222ffdc93b0b093fd3b6af3db75.tar.bz2
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
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r--gcc/dwarf2asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c
index cd1b91a..84b878f 100644
--- a/gcc/dwarf2asm.c
+++ b/gcc/dwarf2asm.c
@@ -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);