summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-07-12 09:10:55 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-07-12 09:10:55 +0000
commit860a3bf4ba8b97b54865d080db52615f448c30d2 (patch)
treeab16af6ff8f9a51ffd9e618058ffc341dc430cf6
parent8868cda9ca3561318b0629d53ea364c87c618990 (diff)
downloadbcm5719-llvm-860a3bf4ba8b97b54865d080db52615f448c30d2.tar.gz
bcm5719-llvm-860a3bf4ba8b97b54865d080db52615f448c30d2.zip
Fix -Wdocumentation warnings. NFCI.
llvm-svn: 336895
-rw-r--r--llvm/include/llvm/AsmParser/Parser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/AsmParser/Parser.h b/llvm/include/llvm/AsmParser/Parser.h
index 9120ebd4b4b..285a7c022a2 100644
--- a/llvm/include/llvm/AsmParser/Parser.h
+++ b/llvm/include/llvm/AsmParser/Parser.h
@@ -33,7 +33,7 @@ class Type;
/// run the verifier after parsing the file to check that it is okay.
/// Parse LLVM Assembly from a file
/// \param Filename The name of the file to parse
-/// \param Error Error result info.
+/// \param Err Error result info.
/// \param Context Context in which to allocate globals info.
/// \param Slots The optional slot mapping that will be initialized during
/// parsing.
@@ -53,7 +53,7 @@ parseAssemblyFile(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context,
/// run the verifier after parsing the file to check that it is okay.
/// Parse LLVM Assembly from a string
/// \param AsmString The string containing assembly
-/// \param Error Error result info.
+/// \param Err Error result info.
/// \param Context Context in which to allocate globals info.
/// \param Slots The optional slot mapping that will be initialized during
/// parsing.
@@ -83,7 +83,7 @@ struct ParsedModuleAndIndex {
/// run the verifier after parsing the file to check that they are okay.
/// Parse LLVM Assembly from a file
/// \param Filename The name of the file to parse
-/// \param Error Error result info.
+/// \param Err Error result info.
/// \param Context Context in which to allocate globals info.
/// \param Slots The optional slot mapping that will be initialized during
/// parsing.
@@ -104,7 +104,7 @@ parseAssemblyFileWithIndex(StringRef Filename, SMDiagnostic &Err,
/// should run the verifier after parsing the file to check that it is okay.
/// Parse LLVM Assembly Index from a file
/// \param Filename The name of the file to parse
-/// \param Error Error result info.
+/// \param Err Error result info.
std::unique_ptr<ModuleSummaryIndex>
parseSummaryIndexAssemblyFile(StringRef Filename, SMDiagnostic &Err);
OpenPOWER on IntegriCloud