diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-29 18:36:43 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-29 18:36:43 +0000 |
commit | f0548d0e4b15bebf1b91a1ca9b8273d949d301ea (patch) | |
tree | 500c5f65a93c9ad8567f24bc6d8ccfb703617f48 /gcc/config/darwin9.h | |
parent | a8654287c389ab857c5348209b819ff826b6d86f (diff) | |
download | gcc-f0548d0e4b15bebf1b91a1ca9b8273d949d301ea.tar.gz |
* config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123339 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/darwin9.h')
-rw-r--r-- | gcc/config/darwin9.h | 4 |
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) |