[llvm] r357987 - Fix Wdocumentation warning. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 9 02:38:25 PDT 2019


Author: rksimon
Date: Tue Apr  9 02:38:25 2019
New Revision: 357987

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

Modified:
    llvm/trunk/include/llvm/IR/DIBuilder.h

Modified: llvm/trunk/include/llvm/IR/DIBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/DIBuilder.h?rev=357987&r1=357986&r2=357987&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/DIBuilder.h (original)
+++ llvm/trunk/include/llvm/IR/DIBuilder.h Tue Apr  9 02:38:25 2019
@@ -706,12 +706,12 @@ namespace llvm {
                  DITemplateParameterArray TParams = nullptr,
                  DITypeArray ThrownTypes = nullptr);
 
-    /// Create common block entry for a Fortran common block
-    /// \param Scope       Scope of this common block
-    /// \param Name        The name of this common block
-    /// \param File        The file this common block is defined
-    /// \param LineNo      Line number
-    /// \param VarList     List of variables that a located in common block
+    /// Create common block entry for a Fortran common block.
+    /// \param Scope       Scope of this common block.
+    /// \param decl        Global variable declaration.
+    /// \param Name        The name of this common block.
+    /// \param File        The file this common block is defined.
+    /// \param LineNo      Line number.
     DICommonBlock *createCommonBlock(DIScope *Scope, DIGlobalVariable *decl,
                                      StringRef Name, DIFile *File,
                                      unsigned LineNo);




More information about the llvm-commits mailing list