diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-12-02 17:02:11 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-12-02 17:02:11 +0000 |
commit | 50198098b95d30dc027ac4f89e77a727b3a25635 (patch) | |
tree | 1875532a6823644b38abf9b54591ade6b53b0383 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1596c4531b3950f4c883013cb51182ad40884633 (diff) | |
download | bcm5719-llvm-50198098b95d30dc027ac4f89e77a727b3a25635.tar.gz bcm5719-llvm-50198098b95d30dc027ac4f89e77a727b3a25635.zip |
IR Gen. part of API support for __block cxx
objects imported into blocks. //rdar://8594790.
Will have a test case coming (as well as one
sent to llvm test suite).
llvm-svn: 120713
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 616c227ffbe..e8de03a56ad 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -1659,7 +1659,7 @@ public: void EmitCXXConstructExpr(const CXXConstructExpr *E, AggValueSlot Dest); void EmitSynthesizedCXXCopyCtor(llvm::Value *Dest, llvm::Value *Src, - const BlockDeclRefExpr *BDRE); + const Expr *Exp); RValue EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E, AggValueSlot Slot =AggValueSlot::ignored()); |