Silencing an MSVC C4334 warning ('<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)). NFC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215642 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Aaron Ballman 2014-08-14 13:43:57 +00:00
parent 0b2081a05a
commit f6964a7df9

View File

@ -487,7 +487,7 @@ bool AArch64FastISel::ComputeAddress(const Value *Obj, Address &Addr, Type *Ty)
NumBytes = 0; NumBytes = 0;
} }
if (NumBytes != (1U << Val)) if (NumBytes != (1ULL << Val))
break; break;
Addr.setShift(Val); Addr.setShift(Val);