From 8bda54e50870252d7436036fcc86d7b32e1e4d40 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 12 Jul 2018 09:10:55 +0000 Subject: [PATCH] Fix -Wdocumentation warnings. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@336895 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/AsmParser/Parser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/AsmParser/Parser.h b/include/llvm/AsmParser/Parser.h index 9120ebd4b4b..285a7c022a2 100644 --- a/include/llvm/AsmParser/Parser.h +++ b/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 parseSummaryIndexAssemblyFile(StringRef Filename, SMDiagnostic &Err); -- 2.50.1