Fix MSVC 2012 warning about a 32-bit shift that should be 64-bit

llvm-svn: 173454
This commit is contained in:
Reid Kleckner 2013-01-25 15:35:56 +00:00
parent 2cb0fa10c2
commit 8978e92751
1 changed files with 2 additions and 2 deletions

View File

@ -524,12 +524,12 @@ bool AttributeImpl::hasAttributes() const {
uint64_t AttributeImpl::getAlignment() const {
uint64_t Mask = Raw() & getAttrMask(Attribute::Alignment);
return 1U << ((Mask >> 16) - 1);
return 1ULL << ((Mask >> 16) - 1);
}
uint64_t AttributeImpl::getStackAlignment() const {
uint64_t Mask = Raw() & getAttrMask(Attribute::StackAlignment);
return 1U << ((Mask >> 26) - 1);
return 1ULL << ((Mask >> 26) - 1);
}
void AttributeImpl::Profile(FoldingSetNodeID &ID, Constant *Data,