diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-04 19:49:18 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-09-04 19:49:18 +0000 |
commit | 699c06068dab18efd37897659ec120d211827607 (patch) | |
tree | 52df08c9bc7a3cd8abd924981005f8cb7d2ebdaf /lib/CodeGen/CGExprScalar.cpp | |
parent | 24dce6ef2f39d939eb8f01ef70eaa7dcdb8c6a62 (diff) |
Casting of a property reference to 'void' did not
generate the necessary code. This patch fixes it.
// rdar://8389655
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 2318cc4e9a..eb4929d138 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -1038,8 +1038,13 @@ Value *ScalarExprEmitter::EmitCastExpr(CastExpr *CE) { return Builder.CreatePtrToInt(Src, ConvertType(DestTy)); } case CK_ToVoid: { - if (E->Classify(CGF.getContext()).isGLValue()) - CGF.EmitLValue(E); + if (E->Classify(CGF.getContext()).isGLValue()) { + LValue LV = CGF.EmitLValue(E); + if (LV.isPropertyRef()) + CGF.EmitLoadOfPropertyRefLValue(LV, E->getType()); + else if (LV.isKVCRef()) + CGF.EmitLoadOfKVCRefLValue(LV, E->getType()); + } else CGF.EmitAnyExpr(E, 0, false, true); return 0; |