summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC
diff options
context:
space:
mode:
authorDavid Chisnall <csdavec@swan.ac.uk>2012-04-09 17:25:11 +0000
committerDavid Chisnall <csdavec@swan.ac.uk>2012-04-09 17:25:11 +0000
commit561d62280aecff3168097086425a7da0442d0de4 (patch)
tree5defef04f7ba8a9a75ff5dc5aa2f540b460ec684 /test/CodeGenObjC
parenteb52f86a62db523e3c993686b3ed92c55d59d53c (diff)
Revert r154321, pending more discussion.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenObjC')
-rw-r--r--test/CodeGenObjC/trace.m13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGenObjC/trace.m b/test/CodeGenObjC/trace.m
deleted file mode 100644
index a67903a58a..0000000000
--- a/test/CodeGenObjC/trace.m
+++ /dev/null
@@ -1,13 +0,0 @@
-///RUN: %clang_cc1 -triple x86_64-unknown-freebsd9.0 -fobjc-trace -fgnu-runtime -fobjc-dispatch-method=non-legacy -emit-llvm -o - %s | FileCheck %s
-
-
-@interface A
-+ (id)msg;
-@end
-
-void f(void) {
- [A msg];
- // CHECK: call void @objc_trace_enter(
- // CHECK: @objc_msgSend
- // CHECK: call void @objc_trace_exit(
-}