[llvm] Reland: [MC] output inlined-at debug info (#106230) (PR #130306)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 13:08:41 PST 2025
================
@@ -2057,6 +2057,17 @@ void DwarfDebug::beginInstruction(const MachineInstr *MI) {
}
}
+ auto RecordSourceLine = [this](auto &DL, auto Flags) {
+ StringRef Comment;
+ if (Asm->OutStreamer->isVerboseAsm()) {
+ SmallString<128> LocationString;
+ raw_svector_ostream OS(LocationString);
+ DL.print(OS);
+ Comment = OS.str();
----------------
nikic wrote:
Won't this use-after-scope?
https://github.com/llvm/llvm-project/pull/130306
More information about the llvm-commits
mailing list