Commit d9dbda20 by Mike Stump

* config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Fix typo.

From-SVN: r123339
parent ab1da110
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
#undef ASM_OUTPUT_ALIGNED_COMMON #undef ASM_OUTPUT_ALIGNED_COMMON
#define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \ #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
do { \ do { \
unsigned HOST_WIDE_INT _new_size = SIZE; \ unsigned HOST_WIDE_INT _new_size = (SIZE); \
fprintf ((FILE), ".comm "); \ fprintf ((FILE), ".comm "); \
assemble_name ((FILE), (NAME)); \ assemble_name ((FILE), (NAME)); \
if (_new_size == 0) _new_size = 1; \ if (_new_size == 0) _new_size = 1; \
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \ 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) } while (0)
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