summaryrefslogtreecommitdiff
path: root/include/llvm/Instructions.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-09-12 16:59:47 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-09-12 16:59:47 +0000
commit67c8978617c3bce9d07210f93f6c64c715f77695 (patch)
tree474ba0af41beb3d595bc350bec57754103e3661f /include/llvm/Instructions.h
parentba9d069d797fbe204470c18a5f15e7f3cf763e0b (diff)
downloadllvm-67c8978617c3bce9d07210f93f6c64c715f77695.tar.gz
llvm-67c8978617c3bce9d07210f93f6c64c715f77695.tar.bz2
llvm-67c8978617c3bce9d07210f93f6c64c715f77695.tar.xz
Fix a couple of Doxygen comment issues pointed out by -Wdocumentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163721 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r--include/llvm/Instructions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h
index f5187e6832..9f24ab3ec6 100644
--- a/include/llvm/Instructions.h
+++ b/include/llvm/Instructions.h
@@ -2613,7 +2613,7 @@ public:
}
/// addCase - Add an entry to the switch instruction...
- /// @Deprecated
+ /// @deprecated
/// Note:
/// This action invalidates case_end(). Old case_end() iterator will
/// point to the added case.
@@ -2699,7 +2699,7 @@ public:
}
/// Resolves case value for current case.
- /// @Deprecated
+ /// @deprecated
ConstantIntTy *getCaseValue() {
assert(Index < SI->getNumCases() && "Index out the number of cases.");
IntegersSubsetRef CaseRanges = *SubsetIt;
@@ -2803,7 +2803,7 @@ public:
CaseIt(const ParentTy& Src) : ParentTy(Src) {}
/// Sets the new value for current case.
- /// @Deprecated.
+ /// @deprecated.
void setValue(ConstantInt *V) {
assert(Index < SI->getNumCases() && "Index out the number of cases.");
IntegersSubsetToBB Mapping;