aboutsummaryrefslogtreecommitdiff
path: root/include/llvm
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 /include/llvm
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
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/IR/Attributes.h7
1 files changed, 2 insertions, 5 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 {