mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use the accessor method instead of the raw ivar to get the bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171220 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a84e7508eb
commit
4d5e5e5d61
@ -335,23 +335,23 @@ uint64_t AttributeImpl::getAttrMask(uint64_t Val) {
|
||||
}
|
||||
|
||||
bool AttributeImpl::hasAttribute(uint64_t A) const {
|
||||
return (Bits & getAttrMask(A)) != 0;
|
||||
return (Raw() & getAttrMask(A)) != 0;
|
||||
}
|
||||
|
||||
bool AttributeImpl::hasAttributes() const {
|
||||
return Bits != 0;
|
||||
return Raw() != 0;
|
||||
}
|
||||
|
||||
bool AttributeImpl::hasAttributes(const Attribute &A) const {
|
||||
return Bits & A.Raw(); // FIXME: Raw() won't work here in the future.
|
||||
return Raw() & A.Raw(); // FIXME: Raw() won't work here in the future.
|
||||
}
|
||||
|
||||
uint64_t AttributeImpl::getAlignment() const {
|
||||
return Bits & getAttrMask(Attribute::Alignment);
|
||||
return Raw() & getAttrMask(Attribute::Alignment);
|
||||
}
|
||||
|
||||
uint64_t AttributeImpl::getStackAlignment() const {
|
||||
return Bits & getAttrMask(Attribute::StackAlignment);
|
||||
return Raw() & getAttrMask(Attribute::StackAlignment);
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user