[llvm] [EarlyIfConverter] Fix reg killed twice after early-if-predicator and ifcvt (PR #133554)
Jon Roelofs via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 08:42:52 PDT 2025
================
@@ -690,6 +717,13 @@ void SSAIfConv::convertIf(SmallVectorImpl<MachineBasicBlock *> &RemoveBlocks,
else
++NumDiamondsConv;
+ // If both blocks are going to be merged into Head, remove "killed" flag from
+ // registers, which are killed in TBB and FBB. Otherwise, register will be
+ // killed twice in Head after splice. Double killed register is an incorrect
+ // MIR.
+ if (TBB != Tail && FBB != Tail)
+ clearDoubleKillFlags(TBB, FBB);
----------------
jroelofs wrote:
IIUC you need to remove kill flags from `TBB` as instructions from that block are spliced _before_ those in `FBB`.
https://github.com/llvm/llvm-project/pull/133554
More information about the llvm-commits
mailing list