aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJames Greenhalgh <james.greenhalgh@arm.com>2015-02-12 14:04:12 +0000
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>2015-02-12 14:04:12 +0000
commit825acb30aab1a3dd4697ae1ffa75e60a06c799a9 (patch)
tree7dcd4d7664409c468e2dfa0775a6c9d09aee72d2 /gcc
parent118584f732d0bba5dd3c7a68f1db88e0184763f6 (diff)
downloadgcc-825acb30aab1a3dd4697ae1ffa75e60a06c799a9.zip
gcc-825acb30aab1a3dd4697ae1ffa75e60a06c799a9.tar.gz
gcc-825acb30aab1a3dd4697ae1ffa75e60a06c799a9.tar.bz2
[Patch Testsuite] XFAIL gfortran.dg/pr45636.f90 on AArch64
gcc/testsuite/ * gfortran.dg/pr45636.f90: XFAIL for aarch64* targets. From-SVN: r220647
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gfortran.dg/pr45636.f904
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 910e873..51e65ca 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-12 James Greenhalgh <james.greenhalgh@arm.com>
+
+ * gfortran.dg/pr45636.f90: XFAIL for aarch64* targets.
+
2015-02-12 Jakub Jelinek <jakub@redhat.com>
PR testsuite/64930
diff --git a/gcc/testsuite/gfortran.dg/pr45636.f90 b/gcc/testsuite/gfortran.dg/pr45636.f90
index c80dda4..fcf2bec 100644
--- a/gcc/testsuite/gfortran.dg/pr45636.f90
+++ b/gcc/testsuite/gfortran.dg/pr45636.f90
@@ -10,5 +10,7 @@ program main
b = y
call sub(a, b)
end program main
-! { dg-final { scan-tree-dump-times "memset" 0 "forwprop2" { xfail { { hppa*-*-* && { ! lp64 } } || { mips*-*-* && { ! nomips16 } } } } } }
+! This test will fail on targets which prefer memcpy/memset over
+! move_by_pieces/store_by_pieces.
+! { dg-final { scan-tree-dump-times "memset" 0 "forwprop2" { xfail { { hppa*-*-* && { ! lp64 } } || { { mips*-*-* && { ! nomips16 } } || { aarch64*-*-* } } } } } }
! { dg-final { cleanup-tree-dump "forwprop2" } }