forked from OSchip/llvm-project
[AMDGPU] Fix build failure
Fixed error 'lambda capture 'CondReg' is not required to be captured for this use'. llvm-svn: 349005
This commit is contained in:
parent
3897b2dca1
commit
5225746e03
|
@ -199,7 +199,7 @@ static unsigned optimizeVcndVcmpPair(MachineBasicBlock &MBB,
|
|||
MRI.use_nodbg_empty(CmpReg)) ||
|
||||
(CmpReg == CondReg &&
|
||||
std::none_of(std::next(Cmp->getIterator()), Andn2->getIterator(),
|
||||
[TRI, CondReg](const MachineInstr &MI) {
|
||||
[TRI](const MachineInstr &MI) {
|
||||
return MI.readsRegister(CondReg, TRI); }))) {
|
||||
LLVM_DEBUG(dbgs() << "Erasing: " << *Cmp << '\n');
|
||||
|
||||
|
|
Loading…
Reference in New Issue