Changes in directory llvm/lib/Analysis:
ScalarEvolutionExpander.cpp updated: 1.5 -> 1.6 --- Log message: Replacing std::iostreams with llvm iostreams. Some of these changes involve adding a temporary wrapper around the ostream to make it friendly to functions expecting an LLVM stream. This should be fixed in the future. --- Diffs of the changes: (+1 -1) ScalarEvolutionExpander.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Analysis/ScalarEvolutionExpander.cpp diff -u llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.5 llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.6 --- llvm/lib/Analysis/ScalarEvolutionExpander.cpp:1.5 Sun Nov 26 19:05:09 2006 +++ llvm/lib/Analysis/ScalarEvolutionExpander.cpp Tue Nov 28 18:19:40 2006 @@ -174,7 +174,7 @@ SCEVHandle IH = SCEVUnknown::get(I); // Get I as a "symbolic" SCEV. SCEVHandle V = S->evaluateAtIteration(IH); - //std::cerr << "Evaluated: " << *this << "\n to: " << *V << "\n"; + //llvm_cerr << "Evaluated: " << *this << "\n to: " << *V << "\n"; return expandInTy(V, Ty); } _______________________________________________ llvm-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
