* 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 3539845..666bfde 100644 (file)
@@ -1,5 +1,10 @@
 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
        display markers during final schedule.
 
index 087cd68..b3ec1c3 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;
 }