aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-03 00:46:43 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-03 00:46:43 +0000
commit47990e974355dd58d1f320f252e1a7ed3a79e034 (patch)
tree80ff0b277cfc9e54e3978e5e191b691590872a5f /lib
parent189ef5f2e0a0d1c87691f81565b348136fb5c32d (diff)
downloadexternal_llvm-47990e974355dd58d1f320f252e1a7ed3a79e034.zip
external_llvm-47990e974355dd58d1f320f252e1a7ed3a79e034.tar.gz
external_llvm-47990e974355dd58d1f320f252e1a7ed3a79e034.tar.bz2
Make the type signature more strict.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171434 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/IR/AttributeImpl.h4
-rw-r--r--lib/IR/Attributes.cpp4
2 files changed, 4 insertions, 4 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);
diff --git a/lib/IR/Attributes.cpp b/lib/IR/Attributes.cpp
index 2e0b084..b847d76 100644
--- a/lib/IR/Attributes.cpp
+++ b/lib/IR/Attributes.cpp
@@ -359,7 +359,7 @@ uint64_t AttributeImpl::getBitMask() const {
return cast<ConstantInt>(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;
}