diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-27 19:28:51 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-27 19:28:51 +0000 |
commit | a95d9e978a6254633dd7e1daf0fb31dc8f61609a (patch) | |
tree | a313af06e4991c7820c3a77f7cd9953eb52f3a99 /gcc/config/stormy16 | |
parent | 5c4f2f324546ea628a7514b98ffdc63e3e857cf6 (diff) | |
download | gcc-a95d9e978a6254633dd7e1daf0fb31dc8f61609a.tar.gz |
* config/stormy16/stormy16.c (xstormy16_asm_output_aligned_common):
.comm alignment is bytes, not bits.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88194 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/stormy16')
-rw-r--r-- | gcc/config/stormy16/stormy16.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/stormy16/stormy16.c b/gcc/config/stormy16/stormy16.c index b75703b7348..76195cad37e 100644 --- a/gcc/config/stormy16/stormy16.c +++ b/gcc/config/stormy16/stormy16.c @@ -1738,7 +1738,7 @@ xstormy16_asm_output_aligned_common (FILE *stream, } fprintf (stream, "\t.comm\t"); 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 |