diff options
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 45c5fb9f0b..d4b1bd940c 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -1063,7 +1063,7 @@ Value *ScalarExprEmitter::EmitCastExpr(CastExpr *CE) { CGF.EmitLoadOfKVCRefLValue(LV, E->getType()); } else - CGF.EmitAnyExpr(E, 0, false, true); + CGF.EmitAnyExpr(E, AggValueSlot::ignored(), true); return 0; } case CK_VectorSplat: { @@ -1127,7 +1127,7 @@ Value *ScalarExprEmitter::EmitCastExpr(CastExpr *CE) { // Okay, this is a cast from an aggregate. It must be a cast to void. Just // evaluate the result and return. - CGF.EmitAggExpr(E, 0, false, true); + CGF.EmitAggExpr(E, AggValueSlot::ignored(), true); return 0; } |