diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIInstrInfo.cpp')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/SIInstrInfo.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp b/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp index c8410d27301..fe57435204a 100644 --- a/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp +++ b/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp @@ -6415,11 +6415,13 @@ MachineInstr *SIInstrInfo::createPHIDestinationCopy( MachineBasicBlock &MBB, MachineBasicBlock::iterator LastPHIIt, const DebugLoc &DL, Register Src, Register Dst) const { auto Cur = MBB.begin(); - do { + while (Cur != MBB.end()) { if (!Cur->isPHI() && Cur->readsRegister(Dst)) return BuildMI(MBB, Cur, DL, get(TargetOpcode::COPY), Dst).addReg(Src); ++Cur; - } while (Cur != MBB.end() && Cur != LastPHIIt); + if (Cur == LastPHIIt) + break; + } return TargetInstrInfo::createPHIDestinationCopy(MBB, LastPHIIt, DL, Src, Dst); |

