[llvm] TwoAddressInstruction: Fix assert on undef operand with -early-live-intervals (PR #125518)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 3 08:25:27 PST 2025


================
@@ -489,6 +489,9 @@ MachineInstr *TwoAddressInstructionImpl::findOnlyInterestingUse(
     bool &IsDstPhys) const {
   MachineOperand *UseOp = nullptr;
   for (MachineOperand &MO : MRI->use_nodbg_operands(Reg)) {
+    if (MO.isUndef())
+      continue;
+
----------------
arsenm wrote:

It probably should, but I'd need to look exactly at all the implementations of isPlainlyKilled. At least the LiveIntervals one checks there's only one value in the interval 

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


More information about the llvm-commits mailing list