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
17 lines
211 B
C
17 lines
211 B
C
// RUN: %clang_cc1 -g -S -emit-llvm %s -o - | FileCheck %s
|
|
|
|
void func(char c, char* d)
|
|
{
|
|
*d = c + 1;
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
// CHECK: ret void, !dbg [[LINE:.*]]
|
|
// CHECK: [[LINE]] = !DILocation(line: 6,
|