aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Sema/SemaExprCXX.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Sema/SemaExprCXX.cpp b/lib/Sema/SemaExprCXX.cpp
index 109247f977..30a7598ec6 100644
--- a/lib/Sema/SemaExprCXX.cpp
+++ b/lib/Sema/SemaExprCXX.cpp
@@ -854,9 +854,13 @@ Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
QualType FromType = From->getType();
if (SCS.CopyConstructor) {
- // FIXME: Create a temporary object by calling the copy constructor.
- ImpCastExprToType(From, ToType.getNonReferenceType(),
- ToType->isLValueReferenceType());
+ // FIXME: When can ToType be a reference type?
+ assert(!ToType->isReferenceType());
+
+ CXXTempVarDecl *Temp = CXXTempVarDecl::Create(Context, CurContext, ToType);
+ // FIXME: Keep track of whether the copy constructor is elidable or not.
+ From = CXXConstructExpr::Create(Context, Temp, ToType,
+ SCS.CopyConstructor, false, &From, 1);
return false;
}