Commit 5547b982 by Andrew Pinski Committed by Andrew Pinski

darwin.h (ASM_OUTPUT_COMMON): Change variable size's name to _new_size.

2004-09-13  Andrew Pinski  <apinski@apple.com>

        * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Change variable size's
        name to _new_size.

From-SVN: r87442
parent c885d7a1
2004-09-13 Andrew Pinski <apinski@apple.com>
* config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Change variable size's
name to _new_size.
2004-09-13 Richard Henderson <rth@redhat.com> 2004-09-13 Richard Henderson <rth@redhat.com>
PR inline-asm/6806 PR inline-asm/6806
......
...@@ -242,11 +242,11 @@ do { \ ...@@ -242,11 +242,11 @@ do { \
#undef ASM_OUTPUT_ALIGNED_COMMON #undef ASM_OUTPUT_ALIGNED_COMMON
#define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \ #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
do { \ do { \
unsigned HOST_WIDE_INT size = SIZE; \ unsigned HOST_WIDE_INT _new_size = SIZE; \
fputs (".comm ", (FILE)); \ fputs (".comm ", (FILE)); \
RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \ RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \
if (size == 0) size = 1; \ if (_new_size == 0) _new_size = 1; \
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); \ fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", _new_size); \
} while (0) } while (0)
/* Override the standard rs6000 definition. */ /* Override the standard rs6000 definition. */
......
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