dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper alignment for assemble_integer for DW_EH_PE_aligned.

* dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper
        alignment for assemble_integer for DW_EH_PE_aligned.

From-SVN: r45197
This commit is contained in:
Richard Henderson 2001-08-27 10:23:35 -07:00 committed by Richard Henderson
parent 4a56401de4
commit 9f5cd0c518
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-08-27 Richard Henderson <rth@redhat.com>
* dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper
alignment for assemble_integer for DW_EH_PE_aligned.
2001-08-26 Andreas Jaeger <aj@suse.de>
* c-tree.h: Add prototyp for c_sizeof_nowarn.

View File

@ -821,7 +821,8 @@ dw2_asm_output_encoded_addr_rtx VPARAMS ((int encoding,
if (encoding == DW_EH_PE_aligned)
{
assemble_align (POINTER_SIZE);
encoding = DW_EH_PE_absptr;
assemble_integer (addr, size, POINTER_SIZE, 1);
return;
}
/* NULL is _always_ represented as a plain zero. */