summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/func-in-block.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/func-in-block.c')
-rw-r--r--clang/test/CodeGen/func-in-block.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/CodeGen/func-in-block.c b/clang/test/CodeGen/func-in-block.c
new file mode 100644
index 0000000..1900135
--- /dev/null
+++ b/clang/test/CodeGen/func-in-block.c
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fblocks -emit-llvm -o - %s | FileCheck %s
+// rdar: // 7860965
+
+extern void PRINTF(const char *);
+extern void B(void (^)(void));
+
+int main()
+{
+ PRINTF(__func__);
+ B(
+ ^{
+ PRINTF(__func__);
+ }
+ );
+ return 0; // not reached
+}
+
+// CHECK: @__func__.__main_block_invoke_0 = private unnamed_addr constant [22 x i8] c"__main_block_invoke_0\00"
+// CHECK: call void @PRINTF({{.*}}@__func__.__main_block_invoke_