mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-21 03:28:31 +00:00
Fix MSVC 2012 warning about a 32-bit shift that should be 64-bit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173454 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
94d1f5b10c
commit
f86c9321fc
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user