Removed #include <iostream> and used the llvm_cerr/DOUT streams instead.

llvm-svn: 31922
This commit is contained in:
Bill Wendling
2006-11-26 09:17:06 +00:00
parent 24cdf575e7
commit a7459ca813
7 changed files with 34 additions and 44 deletions

View File

@@ -45,13 +45,10 @@
#include "llvm/Transforms/Instrumentation.h"
//#include "ProfilingUtils.h"
#include "RSProfiling.h"
#include <set>
#include <map>
#include <queue>
#include <list>
#include <iostream>
using namespace llvm;
namespace {
@@ -628,7 +625,7 @@ static void getBackEdges(Function& F, T& BackEdges) {
std::map<BasicBlock*, int> finish;
int time = 0;
recBackEdge(&F.getEntryBlock(), BackEdges, color, depth, finish, time);
DEBUG(std::cerr << F.getName() << " " << BackEdges.size() << "\n");
DOUT << F.getName() << " " << BackEdges.size() << "\n";
}