Files
clang-p2996/clang/test/CodeGen/func-in-block.c
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

19 lines
464 B
C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fblocks -emit-llvm -o - %s | FileCheck %s
extern void PRINTF(const char *);
extern void B(void (^)(void));
int main(void)
{
PRINTF(__func__);
B(
^{
PRINTF(__func__);
}
);
return 0; // not reached
}
// CHECK: @__func__.__main_block_invoke = private unnamed_addr constant [18 x i8] c"main_block_invoke\00"
// CHECK: call void @PRINTF({{.*}}@__func__.__main_block_invoke