Commit 9f5cd0c5 by Richard Henderson Committed by Richard Henderson

dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper alignment for…

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
parent 4a56401d
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> 2001-08-26 Andreas Jaeger <aj@suse.de>
* c-tree.h: Add prototyp for c_sizeof_nowarn. * c-tree.h: Add prototyp for c_sizeof_nowarn.
......
...@@ -821,7 +821,8 @@ dw2_asm_output_encoded_addr_rtx VPARAMS ((int encoding, ...@@ -821,7 +821,8 @@ dw2_asm_output_encoded_addr_rtx VPARAMS ((int encoding,
if (encoding == DW_EH_PE_aligned) if (encoding == DW_EH_PE_aligned)
{ {
assemble_align (POINTER_SIZE); 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. */ /* NULL is _always_ represented as a plain zero. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment