diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-02-14 02:31:03 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-02-14 02:31:03 +0000 |
commit | b74ed087469db042325bad76fdf3ff6ed67dec09 (patch) | |
tree | 62ab000636f8297cf37a48b6cdfbf20fe4149726 /lib/CodeGen/CodeGenFunction.h | |
parent | 0bdb5aa1a3384d194b0e14a9ecbe3309ff33daa3 (diff) |
Implement IRGen of lambda expressions which capture arrays.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index ca5b88363e..9081ece6f8 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1394,6 +1394,9 @@ public: void EmitCtorPrologue(const CXXConstructorDecl *CD, CXXCtorType Type, FunctionArgList &Args); + void EmitInitializerForField(FieldDecl *Field, LValue LHS, Expr *Init, + ArrayRef<VarDecl *> ArrayIndexes); + /// InitializeVTablePointer - Initialize the vtable pointer of the given /// subobject. /// |