[llvm] Reland: [MC] output inlined-at debug info (#106230) (PR #130306)

Yaxun Liu via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 9 13:07:36 PDT 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();
+    }
----------------
yxsamliu wrote:

thanks. will do

https://github.com/llvm/llvm-project/pull/130306


More information about the llvm-commits mailing list