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 ed299b3 commit e47d7c6Copy full SHA for e47d7c6
llvm/lib/Target/AMDGPU/AMDGPUInsertSingleUseVDST.cpp
@@ -68,7 +68,7 @@ class AMDGPUInsertSingleUseVDST : public MachineFunctionPass {
68
const auto Region = SkipRegions.size();
69
// The first region has an extra bit of encoding space.
70
return SingleUseRegions[Region] <
71
- ((Region == MaxNumberOfSkipRegions) ? 0b1111 : 0b111);
+ ((Region == MaxNumberOfSkipRegions) ? 0b1111U : 0b111U);
72
}
73
74
unsigned encodeImm() {
0 commit comments