Fix minor problems in previous checkin
authorChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 22:52:51 +0000 (22:52 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 22:52:51 +0000 (22:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3669 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/ExprTypeConvert.cpp

index f657b03ec5732c28ffc16e206e5a8727a27129b7..ab56c5270db88a8b7f1992dbc0598243d9971e53 100644 (file)
@@ -125,7 +125,7 @@ static Instruction *ConvertMallocToType(MallocInst *MI, const Type *Ty,
   }
 
   assert(AllocTy == Ty);
-  return new MallocInst(AllocTy, Expr.Var, Name);
+  return new MallocInst(AllocTy, Expr.Var, Name);
 }