diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-24 17:04:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-24 17:04:18 +0000 |
commit | 8fdf32822be2238aa7db62d40e75b168b637ab7d (patch) | |
tree | ada1e774883de35a2b97a8711f890753d4986543 /lib/CodeGen/CodeGenFunction.h | |
parent | 4e0b2641d8aa8da8eb001b959940a9ec68f45f0d (diff) |
"Support for Objective-C message sends which return structures. Also includes a small fix for constant string handling that should have been in the last patch (sorry!) and a hook for generating selectors (rest of this implementation to follow in the next patch)."
Patch by David Chisnall!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b62042508c..82d4cb52a5 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -451,6 +451,10 @@ public: bool isSplat = false); llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); + llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E); + llvm::Value *EmitObjCMessageExpr(const ObjCMessageExpr *E); + + //===--------------------------------------------------------------------===// // Expression Emission |