diff options
| author | Bill Wendling <isanbard@gmail.com> | 2013-02-01 00:48:14 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2013-02-01 00:48:14 +0000 |
| commit | 3f9fcd48a4d4556e70c346fb9d2769302313e83b (patch) | |
| tree | b81f8e2e13b277ddd1bb4edce978bb9495fe7869 /llvm/include | |
| parent | 13fbb991077f389d2b3cbb5f5673ad0d815af709 (diff) | |
| download | bcm5719-llvm-3f9fcd48a4d4556e70c346fb9d2769302313e83b.tar.gz bcm5719-llvm-3f9fcd48a4d4556e70c346fb9d2769302313e83b.zip | |
Remove one of the odious 'Raw' methods.
llvm-svn: 174130
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/IR/Attributes.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/include/llvm/IR/Attributes.h b/llvm/include/llvm/IR/Attributes.h index 49ef884b702..63fd4fb1edc 100644 --- a/llvm/include/llvm/IR/Attributes.h +++ b/llvm/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 { |

