diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-07 20:22:40 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-08-07 20:22:40 +0000 |
commit | 40134e71bee0d7a233925b8ed67954ccc5ede6cf (patch) | |
tree | ef497180f518cffc8355b632c444120d30e87430 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | a4d94b1a95454899f696388f6a11db99d707cbdd (diff) | |
download | bcm5719-llvm-40134e71bee0d7a233925b8ed67954ccc5ede6cf.tar.gz bcm5719-llvm-40134e71bee0d7a233925b8ed67954ccc5ede6cf.zip |
More synthesis of copy constructors. Work in progress.
llvm-svn: 78402
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 63632f5f409..b512d3670ba 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -369,6 +369,8 @@ public: void EmitCtorPrologue(const CXXConstructorDecl *CD); + void EmitCopyCtorBody(const CXXConstructorDecl *CD); + /// EmitDtorEpilogue - Emit all code that comes at the end of class's /// destructor. This is to call destructors on members and base classes /// in reverse order of their construction. |