From b346aaa34a3d19c7b8cbb7f3b7adfa6f9f0dae54 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Tue, 9 Apr 2019 09:38:25 +0000 Subject: [PATCH] Fix Wdocumentation warning. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357987 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/DIBuilder.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/llvm/IR/DIBuilder.h b/include/llvm/IR/DIBuilder.h index 7764bab028e..ad9a35b5541 100644 --- a/include/llvm/IR/DIBuilder.h +++ b/include/llvm/IR/DIBuilder.h @@ -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); -- 2.50.1