These date back to when the non-intrinsic format of variable locations was still being tested and was behind a compile-time flag, so not all builds / bots would correctly run them. The solution at the time, to get at least some test coverage, was to have tests opt-in to non-intrinsic debug-info if it was built into LLVM. Nowadays, non-intrinsic format is the default and has been on for more than a year, there's no need for this flag to exist. (I've downgraded the flag from "try" to explicitly requesting non-intrinsic format in some places, so that we can deal with tests that are explicitly about non-intrinsic format in their own commit).
23 lines
853 B
LLVM
23 lines
853 B
LLVM
; RUN: opt -passes=debugify -S < %s | FileCheck --check-prefixes=ALL,VALUE %s
|
|
; RUN: opt -passes=debugify -debugify-level=locations -S < %s | FileCheck --check-prefixes=ALL --implicit-check-not=dbg.value %s
|
|
|
|
|
|
; ALL-LABEL: @test
|
|
define void @test() {
|
|
%add = add i32 1, 2
|
|
; ALL-NEXT: %add = add i32 1, 2, !dbg [[L1:![0-9]+]]
|
|
; VALUE-NEXT: #dbg_value(i32 %add, [[add:![0-9]+]], !DIExpression(), [[L1]]
|
|
%sub = sub i32 %add, 1
|
|
; ALL-NEXT: %sub = sub i32 %add, 1, !dbg [[L2:![0-9]+]]
|
|
; VALUE-NEXT: #dbg_value(i32 %sub, [[sub:![0-9]+]], !DIExpression(), [[L2]]
|
|
; ALL-NEXT: ret void, !dbg [[L3:![0-9]+]]
|
|
ret void
|
|
}
|
|
|
|
; VALUE: [[add]] = !DILocalVariable
|
|
; VALUE: [[sub]] = !DILocalVariable
|
|
|
|
; ALL: [[L1]] = !DILocation(line: 1, column: 1, scope:
|
|
; ALL: [[L2]] = !DILocation(line: 2, column: 1, scope:
|
|
; ALL: [[L3]] = !DILocation(line: 3, column: 1, scope:
|