mirror of https://github.com/acidanthera/audk.git
DuetPkg: Fix Xcode 9 Beta treating 32-bit left shift as undefined
Bug: https://bugzilla.tianocore.org/show_bug.cgi?id=635 Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Hao Wu <hao.a.wu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Andrew Fish <afish@apple.com> Reviewed-by: Hao Wu <hao.a.wu@intel.com>
This commit is contained in:
parent
59bc913c10
commit
aa1d330b22
|
@ -93,11 +93,11 @@ Returns: (VOID)
|
||||||
|
|
||||||
--*/
|
--*/
|
||||||
{
|
{
|
||||||
Sd->mBitBuf = (UINT32) (Sd->mBitBuf << NumOfBits);
|
Sd->mBitBuf = (UINT32) LShiftU64 (((UINT64)Sd->mBitBuf), NumOfBits);
|
||||||
|
|
||||||
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) {
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue