[llvm-commits] CVS: llvm/lib/Transforms/LevelRaise.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Jul 1 14:27:01 PDT 2004
Changes in directory llvm/lib/Transforms:
LevelRaise.cpp updated: 1.96 -> 1.97
---
Log message:
Make this pass use a more specific debug message than "Processing:".
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Transforms/LevelRaise.cpp
diff -u llvm/lib/Transforms/LevelRaise.cpp:1.96 llvm/lib/Transforms/LevelRaise.cpp:1.97
--- llvm/lib/Transforms/LevelRaise.cpp:1.96 Sun Apr 4 20:28:59 2004
+++ llvm/lib/Transforms/LevelRaise.cpp Thu Jul 1 14:26:38 2004
@@ -562,7 +562,7 @@
bool Changed = false;
for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
- DEBUG(std::cerr << "Processing: " << *BI);
+ DEBUG(std::cerr << "LevelRaising: " << *BI);
if (dceInstruction(BI) || doConstantPropagation(BI)) {
Changed = true;
++NumDCEorCP;
More information about the llvm-commits
mailing list