LLVM r236120 renamed debug info IR constructs to use a `DI` prefix, now that the `DIDescriptor` hierarchy has been gone for about a week. This commit was generated using the rename-md-di-nodes.sh upgrade script attached to PR23080, followed by running clang-format-diff.py on the `lib/` portion of the patch. llvm-svn: 236121
20 lines
579 B
C
20 lines
579 B
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -g -fblocks -emit-llvm -o - %s | FileCheck %s
|
|
// Assignment and block entry should point to the same line.
|
|
// rdar://problem/14039866
|
|
|
|
// CHECK: define{{.*}}@main()
|
|
// CHECK: store{{.*}}bitcast{{.*}}, !dbg ![[ASSIGNMENT:[0-9]+]]
|
|
// CHECK: define {{.*}} @__main_block_invoke
|
|
// CHECK: dbg ![[BLOCK_ENTRY:[0-9]+]]
|
|
|
|
int main()
|
|
{
|
|
// CHECK: [[ASSIGNMENT]] = !DILocation(line: [[@LINE+2]],
|
|
// CHECK: [[BLOCK_ENTRY]] = !DILocation(line: [[@LINE+1]],
|
|
int (^blockptr)(void) = ^(void) {
|
|
return 0;
|
|
};
|
|
return blockptr();
|
|
}
|
|
|