diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-10 22:52:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-10 22:52:51 +0000 |
commit | 533ce5c070be4fd2c9c3fb9bd6c1a7b6bec80aaa (patch) | |
tree | 9fba4e8b1b46e9473ec7ec1e4504b545a130febf /lib | |
parent | 228b14b71eaf7c2990d25b8be56ca7250f605a8b (diff) | |
download | external_llvm-533ce5c070be4fd2c9c3fb9bd6c1a7b6bec80aaa.zip external_llvm-533ce5c070be4fd2c9c3fb9bd6c1a7b6bec80aaa.tar.gz external_llvm-533ce5c070be4fd2c9c3fb9bd6c1a7b6bec80aaa.tar.bz2 |
Fix minor problems in previous checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/ExprTypeConvert.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/ExprTypeConvert.cpp b/lib/Transforms/ExprTypeConvert.cpp index f657b03..ab56c52 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); } |