[PATCH] D133929: [DebugInfo] Produce variadic DBG_INSTR_REFs from ISel

Jeremy Morse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 16 09:54:06 PDT 2022


jmorse added a comment.

Generally looks good -- needs tests though.



================
Comment at: llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp:851-853
+    } else if (DbgOperand.getKind() == SDDbgOperand::FRAMEIX) {
+      MOs.push_back(MachineOperand::CreateFI(DbgOperand.getFrameIx()));
+      continue;
----------------
Haven't these all been excluded due to `IsInvalidOp`?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133929/new/

https://reviews.llvm.org/D133929



More information about the llvm-commits mailing list