diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-20 00:28:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-20 00:28:19 +0000 |
commit | ed7c618f849e2541b1d0288c43154937652c5b15 (patch) | |
tree | fc393b015b504a877fc370efd8bcac0fb75976c4 /lib/CodeGen/CodeGenFunction.h | |
parent | 0adb3c9b2c0772e940970e2b827d1ee75c0acfce (diff) |
Move all Obj-C runtime interaction into CodeGenFunction.
- Drop duplicate (and broken) code for sending messages.
- Add EmitObjCProtocolExpr to CodeGenFunction.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index e4061ec4f2..8642c1b861 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -475,12 +475,12 @@ public: llvm::Value *EmitVector(llvm::Value * const *Vals, unsigned NumVals, bool isSplat = false); + llvm::Value *EmitObjCProtocolExpr(const ObjCProtocolExpr *E); llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E); llvm::Value *EmitObjCMessageExpr(const ObjCMessageExpr *E); - //===--------------------------------------------------------------------===// // Expression Emission //===--------------------------------------------------------------------===// |