In order to placate the machine-verifier, X86CmovConversion needs to reset the NoPHI property when it inserts a PHI.
Fixes buildbot failure: https://lab.llvm.org/buildbot/#/builders/16/builds/50453
Differential D153950
Reset NoPHI MachineFunction property in X86CmovConversion Orlando on Jun 28 2023, 1:15 AM. Authored by
Details In order to placate the machine-verifier, X86CmovConversion needs to reset the NoPHI property when it inserts a PHI. Fixes buildbot failure: https://lab.llvm.org/buildbot/#/builders/16/builds/50453
Diff Detail
Event TimelineComment Actions The pass inserts a PHI, so needs to reset the NoPHIs property - makes sense. The property reset could be taken out of the loop and put under a conditional if (MIItBegin != MIItEnd) - I'd leave that as optional though, because I imagine it makes very little difference in practice. |