diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-06-01 17:40:54 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-06-01 17:40:54 +0000 |
commit | 6c9b3151a2e9ec09b76296b57069f68e17413319 (patch) | |
tree | 18a54bd0e868040e6899a247a18c36f2083e37a2 | |
parent | bacf3d7ca46f784a8b2bdb5fec37b06ed6a42b68 (diff) |
Fixed a test case which I am to blame for making it
not runaable.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72695 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenObjC/messages.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGenObjC/messages.m b/test/CodeGenObjC/messages.m index b4536ce02d..f9b9be6e11 100644 --- a/test/CodeGenObjC/messages.m +++ b/test/CodeGenObjC/messages.m @@ -1,9 +1,9 @@ // RUN: clang-cc -fnext-runtime --emit-llvm -o %t %s && // RUN: grep "objc_msgSend" %t | count 6 && -// RUNX: clang-cc -fgnu-runtime --emit-llvm -o %t %s && -// RUNX: grep "objc_msg_lookup" %t | count 6 && -// RUNY: clang-cc -fgnu-runtime -fobjc-sender-dependent-dispatch --emit-llvm -o %t %s && -// RUNY: grep "objc_msg_lookup_sender" %t | count 6 +// RUN: clang-cc -fgnu-runtime --emit-llvm -o %t %s && +// RUN: grep "objc_msg_lookup" %t | count 6 && +// RUN: clang-cc -fgnu-runtime -fobjc-sender-dependent-dispatch --emit-llvm -o %t %s && +// RUN: grep "objc_msg_lookup_sender" %t | count 6 // RUN: true typedef struct { |