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 | 3befed71c6b9cee75d85ac4ed492a336507e825b (patch) | |
tree | 318f469695a83166c1966465484722871ab4bb00 | |
parent | 93dd260cc969f5494a6513d5b3f7b584bb5e93e4 (diff) | |
download | bcm5719-llvm-3befed71c6b9cee75d85ac4ed492a336507e825b.tar.gz bcm5719-llvm-3befed71c6b9cee75d85ac4ed492a336507e825b.zip |
XFAIL this test on ARM. Filed PR10518 to track.
llvm-svn: 136299
-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 |