diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-27 23:48:42 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-27 23:48:42 +0000 |
commit | de86a387dc295370850b607124be4ddc90f52eb0 (patch) | |
tree | 6f8f5ca976b4dc706dcd8cefeb849fbece81b94e | |
parent | 5dcca66a86725c040a0b51d37225d430927dca60 (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.c | 2 |
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 |