xref: /aosp_15_r20/external/clang/test/CodeGen/debug-info-line.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -w -debug-info-kind=line-tables-only -fexceptions -fcxx-exceptions -S -emit-llvm %s -o - | FileCheck %s
2 
f1(int a,int b)3 int f1(int a, int b) {
4   // CHECK: icmp {{.*}}, !dbg [[DBG_F1:!.*]]
5 #line 100
6   return a  //
7          && //
8          b;
9 }
10 
11 // CHECK: [[DBG_F1]] = !DILocation(line: 100,
12