OSDN Git Service

Change TARGET_ALTIVEC to TARGET_ALTIVEC_ABI.
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 Oct 2003 01:56:59 +0000 (01:56 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 17 Oct 2003 01:56:59 +0000 (01:56 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72589 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 836c8f5..37050c1 100644 (file)
@@ -23,7 +23,7 @@
 2003-10-15  David Edelsohn  <edelsohn@gnu.org>
 
        * config/rs6000/rs6000.c (rs6000_va_arg): Only align vector
-       arguments if TARGET_ALTIVEC.
+       arguments if TARGET_ALTIVEC_ABI.
 
 2003-10-15  Roger Sayle  <roger@eyesopen.com>
 
index 4635362..19f1b28 100644 (file)
@@ -4371,7 +4371,7 @@ rs6000_va_arg (tree valist, tree type)
       else
        {
          /* Altivec arguments must be aligned to a 128-bit boundary.  */
-         if (TARGET_ALTIVEC && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
+         if (TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
            {
              tree vtype = TREE_TYPE (valist);
              tree new_valist, modify;