OSDN Git Service

* gfortran.dg/vect/vect-5.f90: xfail for lp64.
authordorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Apr 2005 08:05:45 +0000 (08:05 +0000)
committerdorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 6 Apr 2005 08:05:45 +0000 (08:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97705 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 3c3678a..cda7c55 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 44d8b62..8a0bcd5 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).