IntelFrameworkModulePkg: Fix Xcode 9 Beta treating 32-bit left shift as undefined

Bug: https://bugzilla.tianocore.org/show_bug.cgi?id=635

Cc: Liming Gao <liming.gao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jeff Fan <jeff.fan@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Andrew Fish <afish@apple.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Andrew Fish 2017-08-03 15:05:10 +08:00 committed by Yonghong Zhu
parent aa1d330b22
commit 9458afa337
1 changed files with 3 additions and 3 deletions

View File

@ -30,14 +30,14 @@ FillBuf (
// //
// Left shift NumOfBits of bits in advance // Left shift NumOfBits of bits in advance
// //
Sd->mBitBuf = (UINT32) (Sd->mBitBuf << NumOfBits); Sd->mBitBuf = (UINT32) LShiftU64 (((UINT64)Sd->mBitBuf), NumOfBits);
// //
// Copy data needed in bytes into mSbuBitBuf // Copy data needed in bytes into mSbuBitBuf
// //
while (NumOfBits > Sd->mBitCount) { while (NumOfBits > Sd->mBitCount) {
NumOfBits = (UINT16) (NumOfBits - Sd->mBitCount);
Sd->mBitBuf |= (UINT32) (Sd->mSubBitBuf << (NumOfBits = (UINT16) (NumOfBits - Sd->mBitCount))); Sd->mBitBuf |= (UINT32) LShiftU64 (((UINT64)Sd->mSubBitBuf), NumOfBits);
if (Sd->mCompSize > 0) { if (Sd->mCompSize > 0) {
// //