diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 16:01:48 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-02-08 16:01:48 -0800 |
commit | 69520b545f55d1397c29cea2cc4bd5906b1d77c5 (patch) | |
tree | 93030805ea80320fad7462267a943d953a843c20 /gcc | |
parent | 9a0fc99c9604e3836e23e13fc48ba8a59f9df73b (diff) | |
download | gcc-69520b545f55d1397c29cea2cc4bd5906b1d77c5.zip gcc-69520b545f55d1397c29cea2cc4bd5906b1d77c5.tar.gz gcc-69520b545f55d1397c29cea2cc4bd5906b1d77c5.tar.bz2 |
(ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Use SIZE not ROUNDED.
From-SVN: r6503
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 7c4bff3..d776556 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3193,13 +3193,13 @@ while (0) /* This says how to define a global common symbol. */ #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \ - mips_declare_object (STREAM, NAME, "\n\t.comm\t", ",%u\n", (ROUNDED)) + mips_declare_object (STREAM, NAME, "\n\t.comm\t", ",%u\n", (SIZE)) /* This says how to define a local common symbol (ie, not visible to linker). */ #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \ - mips_declare_object (STREAM, NAME, "\n\t.lcomm\t", ",%u\n", (ROUNDED)) + mips_declare_object (STREAM, NAME, "\n\t.lcomm\t", ",%u\n", (SIZE)) /* This says how to output an external. It would be possible not to |