[llvm-commits] CVS: reopt/lib/TraceToFunction/TraceToFunction.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Thu May 20 13:24:03 PDT 2004
Changes in directory reopt/lib/TraceToFunction:
TraceToFunction.cpp updated: 1.47 -> 1.48
---
Log message:
Put DEBUG(...) around more debugging printouts and stuff.
---
Diffs of the changes: (+3 -3)
Index: reopt/lib/TraceToFunction/TraceToFunction.cpp
diff -u reopt/lib/TraceToFunction/TraceToFunction.cpp:1.47 reopt/lib/TraceToFunction/TraceToFunction.cpp:1.48
--- reopt/lib/TraceToFunction/TraceToFunction.cpp:1.47 Wed May 19 05:32:12 2004
+++ reopt/lib/TraceToFunction/TraceToFunction.cpp Thu May 20 13:22:48 2004
@@ -587,9 +587,9 @@
// Fold branches which go to FLI blocks
if (BasicBlock *backEdgeTarget =
getFLIEdgeTarget (successor)) {
- std::cerr << "Branch instr " << *BI << " looks like an instrumented "
- << "back-edge from " << srcB->getName() << " to "
- << backEdgeTarget->getName () << "\n";
+ DEBUG (std::cerr << "Branch instr " << *BI << " looks like an"
+ << " instrumented back-edge from " << srcB->getName()
+ << " to " << backEdgeTarget->getName () << "\n");
successor = backEdgeTarget;
}
if (!T.contains (successor)) {
More information about the llvm-commits
mailing list