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:
Bill Wendling 2012-12-29 12:10:46 +00:00
parent a84e7508eb
commit 4d5e5e5d61

View File

@ -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);
}
//===----------------------------------------------------------------------===//