diff options
author | Stan Shebs <shebs@apple.com> | 2001-12-19 03:38:45 +0000 |
---|---|---|
committer | Stan Shebs <shebs@gcc.gnu.org> | 2001-12-19 03:38:45 +0000 |
commit | a4edd5841aa647bef58bf91445b6f979df927549 (patch) | |
tree | d6321d535d2b203da6c5f051f9306f8a266a8eab | |
parent | 619c238cb98cd3353b93d18db1c79c7f4d3a3ea8 (diff) | |
download | gcc-a4edd5841aa647bef58bf91445b6f979df927549.zip gcc-a4edd5841aa647bef58bf91445b6f979df927549.tar.gz gcc-a4edd5841aa647bef58bf91445b6f979df927549.tar.bz2 |
* rs6000.h (LOCAL_ALIGNMENT): Fix parens.
From-SVN: r48172
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bd73403..9dfd344 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-12-18 Stan Shebs <shebs@apple.com> + + * rs6000.h (LOCAL_ALIGNMENT): Fix parens. + Tue Dec 18 17:02:06 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * emit-rtl.c (widen_memory_access): Only call compare_tree_int diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 56d7f11..47cf4d3 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -639,8 +639,7 @@ extern int rs6000_altivec_abi; local store. TYPE is the data type, and ALIGN is the alignment that the object would ordinarily have. */ #define LOCAL_ALIGNMENT(TYPE, ALIGN) \ - ((TARGET_ALTIVEC \ - && TREE_CODE (TYPE)) == VECTOR_TYPE ? 128 : ALIGN) + ((TARGET_ALTIVEC && TREE_CODE (TYPE) == VECTOR_TYPE) ? 128 : ALIGN) /* Handle #pragma pack. */ #define HANDLE_PRAGMA_PACK 1 |