From 533ce5c070be4fd2c9c3fb9bd6c1a7b6bec80aaa Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 10 Sep 2002 22:52:51 +0000 Subject: [PATCH] Fix minor problems in previous checkin git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3669 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/ExprTypeConvert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/ExprTypeConvert.cpp b/lib/Transforms/ExprTypeConvert.cpp index f657b03ec57..ab56c5270db 100644 --- a/lib/Transforms/ExprTypeConvert.cpp +++ b/lib/Transforms/ExprTypeConvert.cpp @@ -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); } -- 2.34.1