diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-01-18 02:48:07 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-01-18 02:48:07 +0000 |
commit | a0a1a8726f92e4032a8ecafe807f6976d4282cb5 (patch) | |
tree | 2a406b999c5307117eadd3af16dba45d2362c63e | |
parent | 32c52c7e042de55dd6476a0bb6ee3e914c3ead3a (diff) | |
download | bcm5719-llvm-a0a1a8726f92e4032a8ecafe807f6976d4282cb5.tar.gz bcm5719-llvm-a0a1a8726f92e4032a8ecafe807f6976d4282cb5.zip |
Add comment after API changes in r225090
Code review suggestion by Eric Christopher.
llvm-svn: 226395
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 3a990d21490..16d236cc58b 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1258,8 +1258,10 @@ public: void EmitLambdaStaticInvokeFunction(const CXXMethodDecl *MD); void EmitAsanPrologueOrEpilogue(bool Prologue); - /// EmitReturnBlock - Emit the unified return block, trying to avoid its - /// emission when possible. + /// \brief Emit the unified return block, trying to avoid its emission when + /// possible. + /// \return The debug location of the user written return statement if the + /// return block is is avoided. llvm::DebugLoc EmitReturnBlock(); /// FinishFunction - Complete IR generation of the current function. It is |