We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b9c71 commit e2fbe0cCopy full SHA for e2fbe0c
llvm/lib/Target/AMDGPU/SIPreEmitPeephole.cpp
@@ -616,7 +616,7 @@ void SIPreEmitPeephole::collectUnpackingCandidates(
616
MachineInstr &Instr = *I;
617
uint16_t UnpackedOpCode = mapToUnpackedOpcode(Instr);
618
bool IsUnpackable =
619
- !(UnpackedOpCode == std::numeric_limits<uint16_t>::max());
+ UnpackedOpCode != std::numeric_limits<uint16_t>::max();
620
if (Instr.isMetaInstruction())
621
continue;
622
if ((Instr.isTerminator()) ||
0 commit comments