diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-19 13:08:36 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-19 13:08:36 -0700 |
commit | 2919600a2b396cbd222002355d331c03fc7aadd0 (patch) | |
tree | 8209487243b1d910accec67a1e44ba1909449c6f /gcc/dwarf2asm.c | |
parent | baeb47327e44c29895118b71de7643875ef18da9 (diff) | |
download | gcc-2919600a2b396cbd222002355d331c03fc7aadd0.zip gcc-2919600a2b396cbd222002355d331c03fc7aadd0.tar.gz gcc-2919600a2b396cbd222002355d331c03fc7aadd0.tar.bz2 |
dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref is aligned to pointer size.
* dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref
is aligned to pointer size.
From-SVN: r45034
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 087cd68..b3ec1c3 100644 --- a/gcc/dwarf2asm.c +++ b/gcc/dwarf2asm.c @@ -880,7 +880,7 @@ dw2_output_indirect_constant_1 (node, data) sym_ref = gen_rtx_SYMBOL_REF (Pmode, sym); ASM_OUTPUT_LABEL (asm_out_file, label); - assemble_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, BITS_PER_UNIT, 1); + assemble_integer (sym_ref, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1); return 0; } |