[llvm] TwoAddressInstruction: Fix assert on undef operand with -early-live-intervals (PR #125518)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 07:48:31 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;
+
----------------
sdesmalen-arm wrote:
Unrelated to your patch, but should there be a break after line 499?
https://github.com/llvm/llvm-project/pull/125518
More information about the llvm-commits
mailing list