mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 10:56:07 +00:00

Summary: This test is a strip down version of a function inside the amalgamated sqlite source. When converted to IR clang produces a phi instruction without debug location. This patch fixes the above issue. Differential Revision: https://reviews.llvm.org/D47720 llvm-svn: 335255
14 lines
344 B
C
14 lines
344 B
C
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o - %s | FileCheck %s
|
|
// Check that clang emits Debug location in the phi instruction
|
|
|
|
int func(int n) {
|
|
int a;
|
|
for(a = 10; a>0 && n++; a--);
|
|
return n;
|
|
}
|
|
|
|
// CHECK: land.end:
|
|
// CHECK-NEXT: {{.*}} = phi i1 {{.*}} !dbg ![[DbgLoc:[0-9]+]]
|
|
|
|
// CHECK: ![[DbgLoc]] = !DILocation(line: 0
|