Some targets (like AIX) might not feature dwarf address section due to low dwarf version. Check before emitting one.
Fixed DebugInfo unit test failures in https://lab.llvm.org/buildbot/#/builders/214/builds/5739.
Differential D143561
[DwarfGenerator] Emit dwarf address section when dwarf version is not less than 4 lkail on Feb 8 2023, 1:58 AM. Authored by
Details
Some targets (like AIX) might not feature dwarf address section due to low dwarf version. Check before emitting one. Fixed DebugInfo unit test failures in https://lab.llvm.org/buildbot/#/builders/214/builds/5739.
Diff Detail
Event Timeline
|
Maybe change this to if (Version >= 5), it looks like the DWARF5 tests are already disabled for AIX, so that should achieve the same effect (if that were not the case these tests would still fail on AIX with this change).