From: Andrew Pinski Date: Mon, 13 Sep 2004 17:30:56 +0000 (+0000) Subject: darwin.h (ASM_OUTPUT_COMMON): Change variable size's name to _new_size. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5547b98291d03422930c1124a599bd666bf2ae5b;p=gcc.git darwin.h (ASM_OUTPUT_COMMON): Change variable size's name to _new_size. 2004-09-13 Andrew Pinski * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Change variable size's name to _new_size. From-SVN: r87442 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 948a0aefabf..20a989aa76b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-13 Andrew Pinski + + * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Change variable size's + name to _new_size. + 2004-09-13 Richard Henderson PR inline-asm/6806 diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index e2ef233e798..6e341fde4fb 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -242,11 +242,11 @@ do { \ #undef ASM_OUTPUT_ALIGNED_COMMON #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \ do { \ - unsigned HOST_WIDE_INT size = SIZE; \ + unsigned HOST_WIDE_INT _new_size = SIZE; \ fputs (".comm ", (FILE)); \ RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \ - if (size == 0) size = 1; \ - fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); \ + if (_new_size == 0) _new_size = 1; \ + fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", _new_size); \ } while (0) /* Override the standard rs6000 definition. */