diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-27 21:10:38 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-10-27 21:10:38 +0000 |
commit | 0c58ce9346e9a6366bd57f4531b267bda68ac6b0 (patch) | |
tree | d3f476919c6b92d1bc901c4cd0852155fe902d24 /clang/lib/CodeGen/CGObjCGNU.cpp | |
parent | d5705d1b1cc231e2dd121af8b1828980c4ab2d61 (diff) | |
download | bcm5719-llvm-0c58ce9346e9a6366bd57f4531b267bda68ac6b0.tar.gz bcm5719-llvm-0c58ce9346e9a6366bd57f4531b267bda68ac6b0.zip |
objective-C arc/mrr: Patch for the new block variable layout meta-data.
It is currently off (so no tests). This is wip.
llvm-svn: 166892
Diffstat (limited to 'clang/lib/CodeGen/CGObjCGNU.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGObjCGNU.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGObjCGNU.cpp b/clang/lib/CodeGen/CGObjCGNU.cpp index 80fa2afcd41..3cf7baab950 100644 --- a/clang/lib/CodeGen/CGObjCGNU.cpp +++ b/clang/lib/CodeGen/CGObjCGNU.cpp @@ -533,7 +533,10 @@ public: const CGBlockInfo &blockInfo) { return NULLPtr; } - + virtual llvm::Constant *BuildRCBlockLayout(CodeGenModule &CGM, + const CGBlockInfo &blockInfo) { + return NULLPtr; + } virtual llvm::GlobalVariable *GetClassGlobal(const std::string &Name) { return 0; } |