diff options
Diffstat (limited to 'lib/IR/AttributeImpl.h')
-rw-r--r-- | lib/IR/AttributeImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/IR/AttributeImpl.h b/lib/IR/AttributeImpl.h index ecdb928..2633608 100644 --- a/lib/IR/AttributeImpl.h +++ b/lib/IR/AttributeImpl.h @@ -45,7 +45,7 @@ public: bool contains(Attribute::AttrKind Kind) const; bool contains(StringRef Kind) const; - bool hasAttribute(uint64_t A) const; + bool hasAttribute(Attribute::AttrKind A) const; bool hasAttributes() const; bool hasAttributes(const Attribute &A) const; @@ -69,7 +69,7 @@ public: uint64_t getBitMask() const; // FIXME: Remove. - static uint64_t getAttrMask(uint64_t Val); + static uint64_t getAttrMask(Attribute::AttrKind Val); void Profile(FoldingSetNodeID &ID) const { Profile(ID, Data, Vals); |