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

Brian Gaeke gaeke at cs.uiuc.edu
Thu Jun 17 02:28:01 PDT 2004


Changes in directory llvm/lib/Transforms/Scalar:

LICM.cpp updated: 1.60 -> 1.61

---
Log message:

Fix typo in DEBUG printout.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Transforms/Scalar/LICM.cpp
diff -u llvm/lib/Transforms/Scalar/LICM.cpp:1.60 llvm/lib/Transforms/Scalar/LICM.cpp:1.61
--- llvm/lib/Transforms/Scalar/LICM.cpp:1.60	Sun May 23 16:20:19 2004
+++ llvm/lib/Transforms/Scalar/LICM.cpp	Thu Jun 17 02:26:52 2004
@@ -549,7 +549,7 @@
 /// that is safe to hoist, this instruction is called to do the dirty work.
 ///
 void LICM::hoist(Instruction &I) {
-  DEBUG(std::cerr << "LICM hoisting to" << Preheader->getName() 
+  DEBUG(std::cerr << "LICM hoisting to " << Preheader->getName() 
                   << ": " << I);
 
   // Remove the instruction from its current basic block... but don't delete the





More information about the llvm-commits mailing list