Skip to content

Commit 3c89ba8

Browse files
committed
clang format
1 parent cab2a0a commit 3c89ba8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/AMDGPU/SIPreEmitPeephole.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)