mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
remove a few DOUTs here and there.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79832 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -633,11 +633,11 @@ bool MergeFunctions::runOnModule(Module &M) {
|
||||
bool LocalChanged;
|
||||
do {
|
||||
LocalChanged = false;
|
||||
DOUT << "size: " << FnMap.size() << "\n";
|
||||
DEBUG(errs() << "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;
|
||||
DOUT << "hash (" << I->first << "): " << FnVec.size() << "\n";
|
||||
DEBUG(errs() << "hash (" << I->first << "): " << FnVec.size() << "\n");
|
||||
|
||||
for (int i = 0, e = FnVec.size(); i != e; ++i) {
|
||||
for (int j = i + 1; j != e; ++j) {
|
||||
|
||||
Reference in New Issue
Block a user