From: Jim Wilson Date: Wed, 9 Feb 1994 00:01:48 +0000 (-0800) Subject: (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Use SIZE not ROUNDED. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=69520b545f55d1397c29cea2cc4bd5906b1d77c5;p=gcc.git (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Use SIZE not ROUNDED. From-SVN: r6503 --- diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 7c4bff3a4f9..d776556399e 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