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
This commit is contained in:
Richard Henderson 2001-08-19 13:08:36 -07:00 committed by Richard Henderson
parent baeb47327e
commit 2919600a2b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-08-19 Richard Henderson <rth@redhat.com>
* dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref
is aligned to pointer size.
2001-08-19 Richard Henderson <rth@redhat.com>
* config/ia64/ia64.c (ia64_cycle_display): Only emit cycle

View File

@ -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;
}