OSDN Git Service

* config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Fix typo.
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Mar 2007 18:36:43 +0000 (18:36 +0000)
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 29 Mar 2007 18:36:43 +0000 (18:36 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123339 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/darwin9.h

index 522bbcd..3d33347 100644 (file)
 #undef  ASM_OUTPUT_ALIGNED_COMMON
 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)             \
   do {                                                                 \
-    unsigned HOST_WIDE_INT _new_size = SIZE;                           \
+    unsigned HOST_WIDE_INT _new_size = (SIZE);                         \
     fprintf ((FILE), ".comm ");                                                \
     assemble_name ((FILE), (NAME));                                    \
     if (_new_size == 0) _new_size = 1;                                 \
     fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",           \
-            (SIZE), floor_log2 ((ALIGN) / BITS_PER_UNIT));             \
+            _new_size, floor_log2 ((ALIGN) / BITS_PER_UNIT));          \
   } while (0)