[llvm-commits] CVS: llvm/lib/Transforms/ExprTypeConvert.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Sep 10 17:53:05 PDT 2002


Changes in directory llvm/lib/Transforms:

ExprTypeConvert.cpp updated: 1.55 -> 1.56

---
Log message:


Fix minor problems in previous checkin


---
Diffs of the changes:

Index: llvm/lib/Transforms/ExprTypeConvert.cpp
diff -u llvm/lib/Transforms/ExprTypeConvert.cpp:1.55 llvm/lib/Transforms/ExprTypeConvert.cpp:1.56
--- llvm/lib/Transforms/ExprTypeConvert.cpp:1.55	Tue Sep 10 17:38:06 2002
+++ llvm/lib/Transforms/ExprTypeConvert.cpp	Tue Sep 10 17:52:51 2002
@@ -125,7 +125,7 @@
   }
 
   assert(AllocTy == Ty);
-  return = new MallocInst(AllocTy, Expr.Var, Name);
+  return new MallocInst(AllocTy, Expr.Var, Name);
 }
 
 





More information about the llvm-commits mailing list