diff options
author | Vitaly Buka <vitalybuka@google.com> | 2019-07-10 22:53:50 +0000 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2019-07-10 22:53:50 +0000 |
commit | e72676657f3e2f3e29125efc8c12bcb477cda445 (patch) | |
tree | 814e96350453e1666036d428949b3627cba77d37 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 6a155f52bc2a5c2edf97ca2b7eaf37fd3d868f59 (diff) | |
download | bcm5719-llvm-e72676657f3e2f3e29125efc8c12bcb477cda445.tar.gz bcm5719-llvm-e72676657f3e2f3e29125efc8c12bcb477cda445.zip |
NFC: Convert large lambda into method
Reviewers: pcc, eugenis
Reviewed By: eugenis
Subscribers: cfe-commits, lldb-commits
Tags: #clang, #lldb
Differential Revision: https://reviews.llvm.org/D63854
llvm-svn: 365708
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 9f7af8db3fe..a51a9711ff1 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -4199,6 +4199,9 @@ private: llvm::Value *EmittedE, bool IsDynamic); + void emitZeroOrPatternForAutoVarInit(QualType type, const VarDecl &D, + Address Loc); + public: #ifndef NDEBUG // Determine whether the given argument is an Objective-C method |