From 47990e974355dd58d1f320f252e1a7ed3a79e034 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 3 Jan 2013 00:46:43 +0000 Subject: [PATCH] Make the type signature more strict. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171434 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/AttributeImpl.h | 4 ++-- lib/IR/Attributes.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/IR/AttributeImpl.h b/lib/IR/AttributeImpl.h index ecdb9280ced..2633608926f 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); diff --git a/lib/IR/Attributes.cpp b/lib/IR/Attributes.cpp index 2e0b084ab59..b847d768f3a 100644 --- a/lib/IR/Attributes.cpp +++ b/lib/IR/Attributes.cpp @@ -359,7 +359,7 @@ uint64_t AttributeImpl::getBitMask() const { return cast(Data)->getZExtValue(); } -uint64_t AttributeImpl::getAttrMask(uint64_t Val) { +uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) { switch (Val) { case Attribute::None: return 0; case Attribute::ZExt: return 1 << 0; @@ -395,7 +395,7 @@ uint64_t AttributeImpl::getAttrMask(uint64_t Val) { llvm_unreachable("Unsupported attribute type"); } -bool AttributeImpl::hasAttribute(uint64_t A) const { +bool AttributeImpl::hasAttribute(Attribute::AttrKind A) const { return (getBitMask() & getAttrMask(A)) != 0; } -- 2.34.1