[clang] 36aaffb - Fix Wdocumentation warnings due to outdated parameter list. NFC.

Simon Pilgrim via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 1 04:01:33 PDT 2020


Author: Simon Pilgrim
Date: 2020-07-01T12:01:18+01:00
New Revision: 36aaffbf56913ebe1e3987d7d0ac76573be65cbc

URL: https://github.com/llvm/llvm-project/commit/36aaffbf56913ebe1e3987d7d0ac76573be65cbc
DIFF: https://github.com/llvm/llvm-project/commit/36aaffbf56913ebe1e3987d7d0ac76573be65cbc.diff

LOG: Fix Wdocumentation warnings due to outdated parameter list. NFC.

Added: 
    

Modified: 
    clang/lib/CodeGen/CGDecl.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp
index e4cb849e79d1..09593531af83 100644
--- a/clang/lib/CodeGen/CGDecl.cpp
+++ b/clang/lib/CodeGen/CGDecl.cpp
@@ -1880,9 +1880,7 @@ void CodeGenFunction::EmitAutoVarInit(const AutoVarEmission &emission) {
 ///
 /// \param init the initializing expression
 /// \param D the object to act as if we're initializing
-/// \param loc the address to initialize; its type is a pointer
-///   to the LLVM mapping of the object's type
-/// \param alignment the alignment of the address
+/// \param lvalue the lvalue to initialize
 /// \param capturedByInit true if \p D is a __block variable
 ///   whose address is potentially changed by the initializer
 void CodeGenFunction::EmitExprAsInit(const Expr *init, const ValueDecl *D,


        


More information about the cfe-commits mailing list