Minor cleanups
authorChris Lattner <sabre@nondot.org>
Thu, 24 Jul 2003 17:31:56 +0000 (17:31 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 24 Jul 2003 17:31:56 +0000 (17:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7289 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/ExprTypeConvert.cpp

index e830beee44b9dd66fd15780bdc5ce4c7da11de8d..c10797615eede100146d739647bad47431dbef1d 100644 (file)
@@ -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<Constant>(V))
     return ConstantFoldCastInstruction(CPV, Ty);
   
-
   CTMap[V] = Ty;
   if (V->getType() == Ty) return true;  // Expression already correct type!