From: Richard Henderson Date: Sun, 19 Aug 2001 20:08:36 +0000 (-0700) Subject: dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref is aligned to pointer... X-Git-Tag: prereleases/libstdc++-3.0.95~2550 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2919600a2b396cbd222002355d331c03fc7aadd0;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3539845b2a55..666bfde86982 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-19 Richard Henderson + + * dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref + is aligned to pointer size. + 2001-08-19 Richard Henderson * config/ia64/ia64.c (ia64_cycle_display): Only emit cycle diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c index 087cd684b983..b3ec1c3d4708 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; }