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 32769c7 commit 36756d6Copy full SHA for 36756d6
llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -3264,7 +3264,7 @@ Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
3264
continue;
3265
3266
KnownBits Known = computeKnownBits(RK.WasOn, 0, nullptr);
3267
- unsigned TZ = std::min(Known.countMinTrailingZeros(), 63);
+ unsigned TZ = std::min(Known.countMinTrailingZeros(), 63u);
3268
if ((1ULL << TZ) < RK.ArgValue)
3269
3270
auto *New = CallBase::removeOperandBundle(II, OBU.getTagID());
0 commit comments