diff options
author | Chris Lattner <sabre@nondot.org> | 2013-06-18 04:57:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2013-06-18 04:57:25 +0000 |
commit | 389ee19eabbfef205472ae1eb7131f8a2e32fde5 (patch) | |
tree | 1c81f0e8f09b64c8aa4d8b85377878abadfa38e3 /include/llvm/IR/Instructions.h | |
parent | 098f1ba00a82f122072578e93c5a9f60593293c3 (diff) | |
download | external_llvm-389ee19eabbfef205472ae1eb7131f8a2e32fde5.tar.gz external_llvm-389ee19eabbfef205472ae1eb7131f8a2e32fde5.tar.bz2 external_llvm-389ee19eabbfef205472ae1eb7131f8a2e32fde5.zip |
remove some @deprecated markers: LLVM APIs aren't deprecated, they are removed when obsolete.
These APIs are still used, and the constant APIs are actually really important.
Removing these makes -Wdocumentation more useful.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184170 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR/Instructions.h')
-rw-r--r-- | include/llvm/IR/Instructions.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 7e29699f73..3a8738f0bf 100644 --- a/include/llvm/IR/Instructions.h +++ b/include/llvm/IR/Instructions.h @@ -2609,7 +2609,6 @@ public: } /// addCase - Add an entry to the switch instruction... - /// @deprecated /// Note: /// This action invalidates case_end(). Old case_end() iterator will /// point to the added case. @@ -2695,7 +2694,6 @@ public: } /// Resolves case value for current case. - /// @deprecated ConstantIntTy *getCaseValue() { assert(Index < SI->getNumCases() && "Index out the number of cases."); IntegersSubsetRef CaseRanges = *SubsetIt; @@ -2799,7 +2797,6 @@ public: CaseIt(const ParentTy& Src) : ParentTy(Src) {} /// Sets the new value for current case. - /// @deprecated. void setValue(ConstantInt *V) { assert(Index < SI->getNumCases() && "Index out the number of cases."); IntegersSubsetToBB Mapping; |