remove some @deprecated markers: LLVM APIs aren't deprecated, they are removed when...
authorChris Lattner <sabre@nondot.org>
Tue, 18 Jun 2013 04:57:25 +0000 (04:57 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 18 Jun 2013 04:57:25 +0000 (04:57 +0000)
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

include/llvm/IR/Constants.h
include/llvm/IR/Instructions.h

index 2f29f5459468f026155b96cac81de9090dd39c2c..99aed0d873602e69ea4295b8df54100ad163008b 100644 (file)
@@ -112,7 +112,6 @@ public:
   /// Return the constant as a 64-bit unsigned integer value after it
   /// has been zero extended as appropriate for the type of this constant. Note
   /// that this method can assert if the value does not fit in 64 bits.
-  /// @deprecated
   /// @brief Return the zero extended value.
   inline uint64_t getZExtValue() const {
     return Val.getZExtValue();
@@ -121,7 +120,6 @@ public:
   /// Return the constant as a 64-bit integer value after it has been sign
   /// extended as appropriate for the type of this constant. Note that
   /// this method can assert if the value does not fit in 64 bits.
-  /// @deprecated
   /// @brief Return the sign extended value.
   inline int64_t getSExtValue() const {
     return Val.getSExtValue();
index 7e29699f73d9489281114a61d7449f539bcebf9c..3a8738f0bf93742956fde04a4377d3fbbc0befe1 100644 (file)
@@ -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;