diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-12 23:27:26 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-12 23:27:26 +0000 |
commit | 30e7864661ffff4ad2c7b542401dbc2172529660 (patch) | |
tree | 15a00c03bcad1fdafb6daf94c3e3c688e91d5b0f /clang/lib/CodeGen | |
parent | b3730b50c70c4b5cdb4b28fee7c98fee491f3a0d (diff) | |
download | bcm5719-llvm-30e7864661ffff4ad2c7b542401dbc2172529660.tar.gz bcm5719-llvm-30e7864661ffff4ad2c7b542401dbc2172529660.zip |
Patch to implement code gen for aggrgate-valued property used
to access a field of its type.
llvm-svn: 62123
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index 20a7693faf6..2d51efa474e 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -802,6 +802,14 @@ LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) { isUnion = true; CVRQualifiers = PTy->getPointeeType().getCVRQualifiers(); } + else if (BaseExpr->getStmtClass() == Expr::ObjCPropertyRefExprClass || + BaseExpr->getStmtClass() == Expr::ObjCKVCRefExprClass) { + RValue RV = EmitObjCPropertyGet(BaseExpr); + BaseValue = RV.getAggregateAddr(); + if (BaseExpr->getType()->isUnionType()) + isUnion = true; + CVRQualifiers = BaseExpr->getType().getCVRQualifiers(); + } else { LValue BaseLV = EmitLValue(BaseExpr); if (BaseLV.isObjCIvar()) |