diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-27 23:46:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-27 23:46:26 +0000 |
commit | 5dcca66a86725c040a0b51d37225d430927dca60 (patch) | |
tree | eef4725c01a697ec02546385efdf378208971c37 | |
parent | 2223441b2927d7442b337806998f660eded40c8f (diff) | |
download | clang-5dcca66a86725c040a0b51d37225d430927dca60.tar.gz |
Remove the optimization option for this test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@136298 91177308-0d34-0410-b5e6-96231b3b80d8
-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 |