diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-27 06:57:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-27 06:57:25 +0000 |
commit | 9c3fc703b29a31d40bcf5027dbb4784dd393804e (patch) | |
tree | acbfc451d53b7828a3f09c4bb5ddcab489fad7b8 /lib/CodeGen/CodeGenFunction.h | |
parent | 8a7267ef413d84a907d178cee9eb32294cf6b13b (diff) |
Initial support for Obj-C dot-syntax for getters.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55410 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 4eed9a7173..0178f8a3e3 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -326,6 +326,7 @@ public: llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E); RValue EmitObjCMessageExpr(const ObjCMessageExpr *E); + RValue EmitObjCPropertyGet(const ObjCPropertyRefExpr *E); //===--------------------------------------------------------------------===// |