diff options
-rw-r--r-- | clang/test/CodeGen/2008-01-25-ByValReadNone.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2008-01-25-ByValReadNone.c b/clang/test/CodeGen/2008-01-25-ByValReadNone.c index 825b9b74eea..06ad1eef00f 100644 --- a/clang/test/CodeGen/2008-01-25-ByValReadNone.c +++ b/clang/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 |