]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 19 Aug 2001 20:08:36 +0000 (20:08 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 19 Aug 2001 20:08:36 +0000 (20:08 +0000)
        is aligned to pointer size.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45034 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/dwarf2asm.c

index 3539845b2a55b56ed076778c78bb726ad7fa4076..666bfde86982e355633d3f6a250e5d32df641faa 100644 (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
index 087cd684b98334bb375fa095a1ec17c2c7e510d4..b3ec1c3d4708a33951794c37c5cefe5153338255 100644 (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;
 }