summaryrefslogtreecommitdiff
path: root/gcc/config/darwin9.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/darwin9.h')
-rw-r--r--gcc/config/darwin9.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/darwin9.h b/gcc/config/darwin9.h
index 522bbcdeb82..3d33347b862 100644
--- a/gcc/config/darwin9.h
+++ b/gcc/config/darwin9.h
@@ -24,10 +24,10 @@
#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)