aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-02-01 00:48:14 +0000
committerBill Wendling <isanbard@gmail.com>2013-02-01 00:48:14 +0000
commitf715dbd263149efeb9c684dfdb0637cf84f94399 (patch)
tree8ce124d661d53a5f360c418d6aebd6e0103ce010
parent30d2c76800bc821aff6e224e0bd11d88a793303e (diff)
Remove one of the odious 'Raw' methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174130 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/IR/Attributes.h7
-rw-r--r--lib/IR/AttributeImpl.h3
-rw-r--r--lib/IR/Attributes.cpp13
3 files changed, 5 insertions, 18 deletions
diff --git a/include/llvm/IR/Attributes.h b/include/llvm/IR/Attributes.h
index 49ef884b70..63fd4fb1ed 100644
--- a/include/llvm/IR/Attributes.h
+++ b/include/llvm/IR/Attributes.h
@@ -159,9 +159,6 @@ public:
void Profile(FoldingSetNodeID &ID) const {
ID.AddPointer(pImpl);
}
-
- // FIXME: Remove this.
- uint64_t Raw() const;
};
//===----------------------------------------------------------------------===//
@@ -272,8 +269,8 @@ public:
typedef ArrayRef<Attribute>::iterator iterator;
- iterator begin(unsigned Idx);
- iterator end(unsigned Idx);
+ iterator begin(unsigned Idx) const;
+ iterator end(unsigned Idx) const;
/// operator==/!= - Provide equality predicates.
bool operator==(const AttributeSet &RHS) const {
diff --git a/lib/IR/AttributeImpl.h b/lib/IR/AttributeImpl.h
index e9525785a2..2eb7f075e3 100644
--- a/lib/IR/AttributeImpl.h
+++ b/lib/IR/AttributeImpl.h
@@ -77,8 +77,7 @@ public:
ID.AddPointer(Vals[I]);
}
- // FIXME: Remove these!
- uint64_t Raw() const;
+ // FIXME: Remove this!
static uint64_t getAttrMask(Attribute::AttrKind Val);
};
diff --git a/lib/IR/Attributes.cpp b/lib/IR/Attributes.cpp
index 01e0235b57..68b831d554 100644
--- a/lib/IR/Attributes.cpp
+++ b/lib/IR/Attributes.cpp
@@ -223,10 +223,6 @@ bool Attribute::operator<(Attribute A) const {
return *pImpl < *A.pImpl;
}
-uint64_t Attribute::Raw() const {
- return pImpl ? pImpl->Raw() : 0;
-}
-
//===----------------------------------------------------------------------===//
// AttributeImpl Definition
//===----------------------------------------------------------------------===//
@@ -308,11 +304,6 @@ bool AttributeImpl::operator<(const AttributeImpl &AI) const {
return ThisCDA->getAsString() < ThatCDA->getAsString();
}
-uint64_t AttributeImpl::Raw() const {
- // FIXME: Remove this.
- return cast<ConstantInt>(Kind)->getZExtValue();
-}
-
uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) {
// FIXME: Remove this.
switch (Val) {
@@ -740,13 +731,13 @@ AttributeSetNode *AttributeSet::getAttributes(unsigned Idx) const {
return 0;
}
-AttributeSet::iterator AttributeSet::begin(unsigned Idx) {
+AttributeSet::iterator AttributeSet::begin(unsigned Idx) const {
if (!pImpl)
return ArrayRef<Attribute>().begin();
return pImpl->begin(Idx);
}
-AttributeSet::iterator AttributeSet::end(unsigned Idx) {
+AttributeSet::iterator AttributeSet::end(unsigned Idx) const {
if (!pImpl)
return ArrayRef<Attribute>().end();
return pImpl->end(Idx);