diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-13 21:53:34 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-11-13 21:53:34 +0000 |
commit | e988bdac44a54ffdcdee4a2dc3d432ea3586acfb (patch) | |
tree | 77367099a42f3db527ed74211c25df7d24f878ab /clang/lib/CodeGen/CGBlocks.h | |
parent | 8c58ba419964bd5d7b53b97c15dce5ba0ee70a87 (diff) | |
download | bcm5719-llvm-e988bdac44a54ffdcdee4a2dc3d432ea3586acfb.tar.gz bcm5719-llvm-e988bdac44a54ffdcdee4a2dc3d432ea3586acfb.zip |
Block API patch to do copy ctor of copied-in cxx objects in
copy helper function and dtor of copied cxx objects
in dispose helper functions. __block variables
TBD next.
llvm-svn: 119011
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.h')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.h b/clang/lib/CodeGen/CGBlocks.h index ce721a46408..a5f2aa9e69c 100644 --- a/clang/lib/CodeGen/CGBlocks.h +++ b/clang/lib/CodeGen/CGBlocks.h @@ -122,6 +122,7 @@ public: struct HelperInfo { int index; int flag; + const BlockDeclRefExpr *cxxvar_import; bool RequiresCopying; }; |