diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2020-07-01 11:25:59 +0100 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2020-07-01 12:01:18 +0100 |
commit | 36aaffbf56913ebe1e3987d7d0ac76573be65cbc (patch) | |
tree | 3db707d136907ee90067d61d8d3d1d302a1c8cbb /clang/lib/CodeGen/CGDecl.cpp | |
parent | 0144f501a63e62771c7e2552334a36c36f3a3686 (diff) | |
download | llvm-36aaffbf56913ebe1e3987d7d0ac76573be65cbc.zip llvm-36aaffbf56913ebe1e3987d7d0ac76573be65cbc.tar.gz llvm-36aaffbf56913ebe1e3987d7d0ac76573be65cbc.tar.bz2 |
Fix Wdocumentation warnings due to outdated parameter list. NFC.
Diffstat (limited to 'clang/lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDecl.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp index e4cb849..0959353 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, |