Commit 43f51151 by DJ Delorie Committed by DJ Delorie

stormy16.c (xstormy16_asm_output_aligned_common): ..comm alignment is bytes, not bits.

* config/stormy16/stormy16.c (xstormy16_asm_output_aligned_common):
.comm alignment is bytes, not bits.

From-SVN: r88194
parent 6337c1a2
2004-09-27 DJ Delorie <dj@redhat.com>
* config/stormy16/stormy16.c (xstormy16_asm_output_aligned_common):
.comm alignment is bytes, not bits.
2004-09-27 Devang Patel <dpatel@apple.com> 2004-09-27 Devang Patel <dpatel@apple.com>
* tree-pretty-print.c (dump_generic_node): Print VEC_COND_EXPR. * tree-pretty-print.c (dump_generic_node): Print VEC_COND_EXPR.
......
...@@ -1738,7 +1738,7 @@ xstormy16_asm_output_aligned_common (FILE *stream, ...@@ -1738,7 +1738,7 @@ xstormy16_asm_output_aligned_common (FILE *stream,
} }
fprintf (stream, "\t.comm\t"); fprintf (stream, "\t.comm\t");
assemble_name (stream, name); assemble_name (stream, name);
fprintf (stream, ",%u,%u\n", size, align); fprintf (stream, ",%u,%u\n", size, align / BITS_PER_UNIT);
} }
/* Mark symbols with the "below100" attribute so that we can use the /* Mark symbols with the "below100" attribute so that we can use the
......
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