Skip to content

Commit 36756d6

Browse files
committed
!fixup fix Linux build failure
1 parent 32769c7 commit 36756d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3264,7 +3264,7 @@ Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
32643264
continue;
32653265

32663266
KnownBits Known = computeKnownBits(RK.WasOn, 0, nullptr);
3267-
unsigned TZ = std::min(Known.countMinTrailingZeros(), 63);
3267+
unsigned TZ = std::min(Known.countMinTrailingZeros(), 63u);
32683268
if ((1ULL << TZ) < RK.ArgValue)
32693269
continue;
32703270
auto *New = CallBase::removeOperandBundle(II, OBU.getTagID());

0 commit comments

Comments
 (0)