Files
llvm/flang/test/Transforms/debug-split-dwarf.fir
Abid Qadeer c2188168ca [flang][debug] Generate splitDebugFilename field in DICompileUnitAttr. (#161214)
This PR builds on https://github.com/llvm/llvm-project/pull/160540 and
allows us to set the `splitDebugFilename` field in `DICompileUnitAttr`.
The changes are mostly mechanical.

I saw some spurious white space in a test that I have cleaned up.
2025-09-30 14:35:33 +01:00

13 lines
294 B
Plaintext

// RUN: fir-opt --add-debug-info="split-dwarf-file=test.dwo" \
// RUN: --mlir-print-debuginfo %s -o - | FileCheck %s
module {
func.func @test() {
return
} loc(#loc1)
}
#loc1 = loc("test.f90":15:1)
// CHECK: llvm.di_compile_unit
// CHECK-SAME: splitDebugFilename = "test.dwo"