diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2005-12-08 10:29:54 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2005-12-08 09:29:54 +0000 |
commit | fa8e24519681444e7252c6ef07a0627099fb0a91 (patch) | |
tree | 697d5cf44ce302a278bbd55ce600b1e2f249bfa7 /gcc | |
parent | f55ae1721303d9392dc062355ac22741e06bfca0 (diff) | |
download | gcc-fa8e24519681444e7252c6ef07a0627099fb0a91.zip gcc-fa8e24519681444e7252c6ef07a0627099fb0a91.tar.gz gcc-fa8e24519681444e7252c6ef07a0627099fb0a91.tar.bz2 |
vect-5.f90: Expect alignment forcing only on ILP32 vect_no_align platforms.
* gfortran.dg/vect/vect-5.f90: Expect alignment forcing only on
ILP32 vect_no_align platforms.
From-SVN: r108223
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/vect/vect-5.f90 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index dfe9d4d..c4e4162 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-12-08 Eric Botcazou <ebotcazou@libertysurf.fr> + + * gfortran.dg/vect/vect-5.f90: Expect alignment forcing only on + ILP32 vect_no_align platforms. + 2005-12-08 Andreas Krebbel <krebbel1@de.ibm.com> Jakub Jelinek <jakub@redhat.com> diff --git a/gcc/testsuite/gfortran.dg/vect/vect-5.f90 b/gcc/testsuite/gfortran.dg/vect/vect-5.f90 index 52c0754..db7b3f9 100644 --- a/gcc/testsuite/gfortran.dg/vect/vect-5.f90 +++ b/gcc/testsuite/gfortran.dg/vect/vect-5.f90 @@ -38,7 +38,7 @@ ! { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { xfail { 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 } } } } -! { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 3 "vect" {target vect_no_align } } } +! { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 3 "vect" { target { ilp32 && vect_no_align } } } } ! We also expect to vectorize one loop for lp64 targets that support ! misaligned access: |