diff options
-rw-r--r-- | test/CodeGen/2008-01-25-ByValReadNone.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/CodeGen/2008-01-25-ByValReadNone.c b/test/CodeGen/2008-01-25-ByValReadNone.c index b4053c0d80..825b9b74ee 100644 --- a/test/CodeGen/2008-01-25-ByValReadNone.c +++ b/test/CodeGen/2008-01-25-ByValReadNone.c @@ -1,6 +1,5 @@ -// RUN: %clang_cc1 -O3 -emit-llvm -o - %s | not grep readonly -// RUN: %clang_cc1 -O3 -emit-llvm -o - %s | not grep readnone - +// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readonly +// RUN: %clang_cc1 -emit-llvm -o - %s | not grep readnone // The struct being passed byval means that we cannot mark the // function readnone. Readnone would allow stores to the arg to |