diff --git a/lib/Transforms/ExprTypeConvert.cpp b/lib/Transforms/ExprTypeConvert.cpp index e830beee44b..c10797615ee 100644 --- a/lib/Transforms/ExprTypeConvert.cpp +++ b/lib/Transforms/ExprTypeConvert.cpp @@ -143,13 +143,13 @@ bool ExpressionConvertibleToType(Value *V, const Type *Ty, ValueTypeCache::iterator CTMI = CTMap.find(V); if (CTMI != CTMap.end()) return CTMI->second == Ty; - // If it's a constant... all constants can be converted to a different type. We - // just ask the constant propagator to see if it can convert the value... + // If it's a constant... all constants can be converted to a different + // type. We just ask the constant propagator to see if it can convert the + // value... // if (Constant *CPV = dyn_cast(V)) return ConstantFoldCastInstruction(CPV, Ty); - CTMap[V] = Ty; if (V->getType() == Ty) return true; // Expression already correct type!