aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2012-02-19 12:28:02 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2012-02-19 12:28:02 +0000
commitaf130fd78267ee9e2395b758a7d827b07ce317a0 (patch)
treecc6928871b65c3a0ba84312e073fc6cb9b334825 /lib/CodeGen/CodeGenFunction.h
parentbac5cf4110c1c9ba0992fad4fd9f66cedc27f3da (diff)
Get recursive initializer lists to work and add a test. Codegen of std::initializer_list is now complete. Onward to array new.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index 82f6f9af5f..95420e5344 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -1812,7 +1812,8 @@ public:
llvm::Value *EmitDynamicCast(llvm::Value *V, const CXXDynamicCastExpr *DCE);
void MaybeEmitStdInitializerListCleanup(LValue lvalue, const Expr *init);
- void EmitStdInitializerListCleanup(LValue lvalue, const InitListExpr *init);
+ void EmitStdInitializerListCleanup(llvm::Value *loc,
+ const InitListExpr *init);
void EmitCheck(llvm::Value *, unsigned Size);