Skip to content

Commit 2b418c3

Browse files
committed
[BitcodeReader] Add missing () to disambiguate precedence. NFC
1 parent 681d59f commit 2b418c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Bitcode/Reader/BitcodeReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6370,7 +6370,7 @@ Error BitcodeReader::parseFunctionBody(Function *F) {
63706370
cast<CallInst>(I)->setCallingConv(
63716371
static_cast<CallingConv::ID>((0x7ff & CCInfo) >> bitc::CALL_CCONV));
63726372
CallInst::TailCallKind TCK = CallInst::TCK_None;
6373-
if (CCInfo & 1 << bitc::CALL_TAIL)
6373+
if (CCInfo & (1 << bitc::CALL_TAIL))
63746374
TCK = CallInst::TCK_Tail;
63756375
if (CCInfo & (1 << bitc::CALL_MUSTTAIL))
63766376
TCK = CallInst::TCK_MustTail;

0 commit comments

Comments
 (0)