diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-22 18:39:36 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-11-22 18:39:36 +0000 |
commit | 8a1810f06b3f1ff13c54658bcb34861b664a5776 (patch) | |
tree | fc89eea33d7ed90ba0955d98241a7129eff7e234 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | bff4b37af513edeabc431266d5008a5f7f4073ca (diff) | |
download | bcm5719-llvm-8a1810f06b3f1ff13c54658bcb34861b664a5776.tar.gz bcm5719-llvm-8a1810f06b3f1ff13c54658bcb34861b664a5776.zip |
New AST node to access "implicit" setter/getter using property dor syntax.
Issuing diagnostics when assigning to read-only properties.
This is work in progress.
llvm-svn: 59874
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 85c500b95e2..56a6e16e9eb 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -524,7 +524,7 @@ public: llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E); llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E); RValue EmitObjCMessageExpr(const ObjCMessageExpr *E); - RValue EmitObjCPropertyGet(const ObjCPropertyRefExpr *E); + RValue EmitObjCPropertyGet(const Expr *E); void EmitObjCPropertySet(const ObjCPropertyRefExpr *E, RValue Src); |