You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
483 B

// 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 = private unnamed_addr constant [20 x i8] c"__main_block_invoke\00"
// CHECK: call void @PRINTF({{.*}}@__func__.__main_block_invoke