Change errs() to dbgs().

llvm-svn: 92633
This commit is contained in:
David Greene 2010-01-05 01:28:12 +00:00
parent cdf0452ed2
commit 74e8bd05cc
1 changed files with 3 additions and 3 deletions

View File

@ -633,17 +633,17 @@ bool MergeFunctions::runOnModule(Module &M) {
bool LocalChanged;
do {
LocalChanged = false;
DEBUG(errs() << "size: " << FnMap.size() << "\n");
DEBUG(dbgs() << "size: " << FnMap.size() << "\n");
for (std::map<unsigned long, std::vector<Function *> >::iterator
I = FnMap.begin(), E = FnMap.end(); I != E; ++I) {
std::vector<Function *> &FnVec = I->second;
DEBUG(errs() << "hash (" << I->first << "): " << FnVec.size() << "\n");
DEBUG(dbgs() << "hash (" << I->first << "): " << FnVec.size() << "\n");
for (int i = 0, e = FnVec.size(); i != e; ++i) {
for (int j = i + 1; j != e; ++j) {
bool isEqual = equals(FnVec[i], FnVec[j]);
DEBUG(errs() << " " << FnVec[i]->getName()
DEBUG(dbgs() << " " << FnVec[i]->getName()
<< (isEqual ? " == " : " != ")
<< FnVec[j]->getName() << "\n");