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
12 lines
278 B
C
12 lines
278 B
C
// RUN: %clang_cc1 -w -gline-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s
|
|
|
|
int f1(int a, int b) {
|
|
// CHECK: icmp {{.*}}, !dbg [[DBG_F1:!.*]]
|
|
#line 100
|
|
return a //
|
|
&& //
|
|
b;
|
|
}
|
|
|
|
// CHECK: [[DBG_F1]] = !DILocation(line: 100,
|