diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-06 18:13:46 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-06 18:13:46 +0000 |
commit | 413297c53d13a05353fc940cf00ae83ee7f89dbf (patch) | |
tree | 22b9f174a7d3c93cc26294188847ece067b7ea28 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 2daa731bab5049c094ad8339951c151349615a18 (diff) | |
download | bcm5719-llvm-413297c53d13a05353fc940cf00ae83ee7f89dbf.tar.gz bcm5719-llvm-413297c53d13a05353fc940cf00ae83ee7f89dbf.zip |
Objective-C ARC. First patch toward generating new APIs
for Objective-C's array and dictionary literals.
rdar://17554063. This is wip.
llvm-svn: 214983
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index a200548aa0e..d1999296e69 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2304,7 +2304,8 @@ public: llvm::Value *EmitObjCArrayLiteral(const ObjCArrayLiteral *E); llvm::Value *EmitObjCDictionaryLiteral(const ObjCDictionaryLiteral *E); llvm::Value *EmitObjCCollectionLiteral(const Expr *E, - const ObjCMethodDecl *MethodWithObjects); + const ObjCMethodDecl *MethodWithObjects, + const ObjCMethodDecl *AllocMethod); llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E); RValue EmitObjCMessageExpr(const ObjCMessageExpr *E, ReturnValueSlot Return = ReturnValueSlot()); |