diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-11 13:45:50 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-11 13:45:50 +0000 |
commit | eec4f60ccd3e021d5ed7636badbe8e82a30da271 (patch) | |
tree | d02364d94b9531a98295f5fd97914c8bc25a7bd3 /gcc/dwarf2asm.c | |
parent | b1e05b1ac87bb2c1f693b6ee340a073ab42b4932 (diff) | |
download | ppe42-gcc-eec4f60ccd3e021d5ed7636badbe8e82a30da271.tar.gz ppe42-gcc-eec4f60ccd3e021d5ed7636badbe8e82a30da271.zip |
* dwarf2asm.c (dw2_output_indirect_constant_1): Take user_label_prefix
into account.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70322 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r-- | gcc/dwarf2asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index cd1b91af8d8..84b878f8d9e 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); |