From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/CodeGen/func-in-block.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 clang/test/CodeGen/func-in-block.c (limited to 'clang/test/CodeGen/func-in-block.c') 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_ -- cgit v1.2.3