aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-27 23:48:42 +0000
committerEric Christopher <echristo@apple.com>2011-07-27 23:48:42 +0000
commitde86a387dc295370850b607124be4ddc90f52eb0 (patch)
tree6f8f5ca976b4dc706dcd8cefeb849fbece81b94e
parent5dcca66a86725c040a0b51d37225d430927dca60 (diff)
XFAIL this test on ARM. Filed PR10518 to track.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136299 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/2008-01-25-ByValReadNone.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/2008-01-25-ByValReadNone.c b/test/CodeGen/2008-01-25-ByValReadNone.c
index 825b9b74ee..06ad1eef00 100644
--- a/test/CodeGen/2008-01-25-ByValReadNone.c
+++ b/test/CodeGen/2008-01-25-ByValReadNone.c
@@ -1,6 +1,8 @@
// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readonly
// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readnone
+// XFAIL: arm
+
// The struct being passed byval means that we cannot mark the
// function readnone. Readnone would allow stores to the arg to
// be deleted in the caller. We also don't allow readonly since