OSDN Git Service

* rs6000.h (LOCAL_ALIGNMENT): Fix parens.
authorshebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Dec 2001 03:38:45 +0000 (03:38 +0000)
committershebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Dec 2001 03:38:45 +0000 (03:38 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48172 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.h

index bd73403..9dfd344 100644 (file)
@@ -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
index 56d7f11..47cf4d3 100644 (file)
@@ -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