diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2016-11-06 07:48:46 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2016-11-06 07:48:46 +0000 |
commit | 74084c44ca0f0f03da1f0ae38e1f1a0a2ca68c6a (patch) | |
tree | 8654916b0e4159cfb3671e729b7e4eed93fefd6c /llvm/lib/IR/AttributeImpl.h | |
parent | 364b59e2661735c8901288a759ace1f712d9b012 (diff) | |
download | bcm5719-llvm-74084c44ca0f0f03da1f0ae38e1f1a0a2ca68c6a.tar.gz bcm5719-llvm-74084c44ca0f0f03da1f0ae38e1f1a0a2ca68c6a.zip |
Kill deprecated attribute API
Summary:
This kill various depreacated API related to attribute :
- The deprecated C API attribute based on LLVMAttribute enum.
- The Raw attribute set format (planned to be removed in 4.0).
Reviewers: bkramer, echristo, mehdi_amini, void
Subscribers: mehdi_amini, llvm-commits
Differential Revision: https://reviews.llvm.org/D23039
llvm-svn: 286062
Diffstat (limited to 'llvm/lib/IR/AttributeImpl.h')
-rw-r--r-- | llvm/lib/IR/AttributeImpl.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/IR/AttributeImpl.h b/llvm/lib/IR/AttributeImpl.h index d58bff56576..1341937c9bc 100644 --- a/llvm/lib/IR/AttributeImpl.h +++ b/llvm/lib/IR/AttributeImpl.h @@ -85,9 +85,6 @@ public: ID.AddString(Kind); if (!Values.empty()) ID.AddString(Values); } - - // FIXME: Remove this! - static uint64_t getAttrMask(Attribute::AttrKind Val); }; //===----------------------------------------------------------------------===// @@ -258,9 +255,6 @@ public: } } - // FIXME: This atrocity is temporary. - uint64_t Raw(unsigned Index) const; - void dump() const; }; |