[llvm] r336895 - Fix -Wdocumentation warnings. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 12 02:10:55 PDT 2018


Author: rksimon
Date: Thu Jul 12 02:10:55 2018
New Revision: 336895

URL: http://llvm.org/viewvc/llvm-project?rev=336895&view=rev
Log:
Fix -Wdocumentation warnings. NFCI.

Modified:
    llvm/trunk/include/llvm/AsmParser/Parser.h

Modified: llvm/trunk/include/llvm/AsmParser/Parser.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/AsmParser/Parser.h?rev=336895&r1=336894&r2=336895&view=diff
==============================================================================
--- llvm/trunk/include/llvm/AsmParser/Parser.h (original)
+++ llvm/trunk/include/llvm/AsmParser/Parser.h Thu Jul 12 02:10:55 2018
@@ -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, SM
 /// 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 Fil
 /// 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);
 




More information about the llvm-commits mailing list