Make this pass use a more specific debug message than "Processing:".
[oota-llvm.git] / lib / Transforms / LevelRaise.cpp
index aeb836d4b7e4fbf9aba15e69d522227badaa413f..f3a42365f060a7c7b0347c1df25dec53b96d0151 100644 (file)
@@ -562,7 +562,7 @@ bool RPR::DoRaisePass(Function &F) {
   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;