File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -593,12 +593,12 @@ void SIPreEmitPeephole::collectUnpackingCandidates(
593593 for (auto I = std::next (BeginMI.getIterator ()); I != E; ++I) {
594594 MachineInstr &Instr = *I;
595595 uint16_t UnpackedOpCode = mapToUnpackedOpcode (Instr);
596- bool IsUnpackable = !(UnpackedOpCode == std::numeric_limits<uint16_t >::max ());
596+ bool IsUnpackable =
597+ !(UnpackedOpCode == std::numeric_limits<uint16_t >::max ());
597598 if (Instr.isMetaInstruction ())
598599 continue ;
599600 if ((Instr.isTerminator ()) ||
600- (TII->isNeverCoissue (Instr) &&
601- !IsUnpackable) ||
601+ (TII->isNeverCoissue (Instr) && !IsUnpackable) ||
602602 (SIInstrInfo::modifiesModeRegister (Instr) &&
603603 Instr.modifiesRegister (AMDGPU::EXEC, TRI)))
604604 return ;
You can’t perform that action at this time.
0 commit comments