diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-19 20:55:16 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-19 20:55:16 +0000 |
commit | 431c883287637b8c36c18f61eca205db41ac3c58 (patch) | |
tree | e792e46940feffef945c73e60217601ec379d67b /clang/lib/CodeGen/CodeGenFunction.h | |
parent | d1a08de1f6406925fc4c0884601491654fd46d90 (diff) | |
download | bcm5719-llvm-431c883287637b8c36c18f61eca205db41ac3c58.tar.gz bcm5719-llvm-431c883287637b8c36c18f61eca205db41ac3c58.zip |
ir-gen for constructing arrays as non-static data members. WIP.
llvm-svn: 79464
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 70425731efb..4d176a49462 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -582,6 +582,10 @@ public: llvm::Value *This, CallExpr::const_arg_iterator ArgBeg, CallExpr::const_arg_iterator ArgEnd); + + void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D, + const ArrayType *Array, + llvm::Value *This); void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type, llvm::Value *This); |