* gfortran.dg/vect/vect-5.f90: xfail for lp64.
authorDorit Naishlos <dorit@il.ibm.com>
Wed, 6 Apr 2005 08:05:45 +0000 (08:05 +0000)
committerDorit Nuzman <dorit@gcc.gnu.org>
Wed, 6 Apr 2005 08:05:45 +0000 (08:05 +0000)
From-SVN: r97705

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/vect/vect-5.f90

index 3c3678a2523f0ae6a44e6c22f278db9de4b59ae9..cda7c55c23058ee1dba05791979bcd10de69bfbb 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-06  Dorit Naishlos  <dorit@il.ibm.com>
+
+       * gfortran.dg/vect/vect-5.f90: xfail for lp64. 
+
 2005-04-05  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/20734
index 44d8b6298274b8479bc87d12653c2f06c8856c83..8a0bcd5dc4d6ffeb84ab556c0f3dc4c2dde9c858 100644 (file)
         stop
         end
 
-! { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { xfail vect_no_align } } }
-! { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 1 "vect" { xfail vect_no_align } } }
-! { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 2 "vect" { xfail vect_no_align } } }
+! { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { xfail { vect_no_align || lp64 } } } }
+! { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 1 "vect" { xfail { vect_no_align || lp64 } } } }
+! { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 2 "vect" { xfail { vect_no_align || lp64 } } } }
+
+! We also expect to vectorize one loop for lp64 targets that support 
+! misaligned access:
+!   scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { lp64 && !vect_no_align } }
+!   scan-tree-dump-times "Alignment of access forced using peeling" 1 "vect" { target { lp64 && !vect_no_align } }
+!   scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { target { lp64 && !vect_no_align } }
+! but we currently can't combine logical operators. (Could define 
+! a keyword for "not_vect_no_align" if desired).