summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/predefined-expr-in-method.m
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@FreeBSD.org>2009-10-15 16:31:19 +0000
committerRoman Divacky <rdivacky@FreeBSD.org>2009-10-15 16:31:19 +0000
commita505eb93f43fb776fca5b1e021f93e9c05e7b53e (patch)
tree5ac7cde31c4f9702279d2164f5266e11d3632b77 /test/CodeGenObjC/predefined-expr-in-method.m
parent98781354c33bdc945ab6ea8c410d36c664ce1f5e (diff)
Notes
Diffstat (limited to 'test/CodeGenObjC/predefined-expr-in-method.m')
-rw-r--r--test/CodeGenObjC/predefined-expr-in-method.m17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGenObjC/predefined-expr-in-method.m b/test/CodeGenObjC/predefined-expr-in-method.m
deleted file mode 100644
index 812ef97252dc..000000000000
--- a/test/CodeGenObjC/predefined-expr-in-method.m
+++ /dev/null
@@ -1,17 +0,0 @@
-// RUN: clang-cc -fnext-runtime --emit-llvm -o %t %s
-
-@interface A
-@end
-@implementation A
-+(void) foo {
- printf("__func__: %s\n", __func__);
- printf("__FUNCTION__: %s\n", __FUNCTION__);
- printf("__PRETTY_FUNCTION__: %s\n", __PRETTY_FUNCTION__);
- return 0;
-}
-@end
-
-int main() {
- [A foo];
- return 0;
-}