diff options
author | Mike Stump <mrs@gcc.gnu.org> | 2007-03-29 18:36:43 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-03-29 18:36:43 +0000 |
commit | d9dbda201bedc78cb887b867bc7cf964651e8608 (patch) | |
tree | 500c5f65a93c9ad8567f24bc6d8ccfb703617f48 | |
parent | ab1da110d0d127559fc4b8b2bf6d0d1ff3feff30 (diff) | |
download | gcc-d9dbda201bedc78cb887b867bc7cf964651e8608.zip gcc-d9dbda201bedc78cb887b867bc7cf964651e8608.tar.gz gcc-d9dbda201bedc78cb887b867bc7cf964651e8608.tar.bz2 |
* config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Fix typo.
From-SVN: r123339
-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 522bbcd..3d33347 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) |