- Since the function is never called in NDEBUG mode, just dropped the DEBUG()
uses here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78649
91177308-0d34-0410-b5e6-
96231b3b80d8
}
void ExactHazardRecognizer::dumpScoreboard() {
- DEBUG(errs() << "Scoreboard:\n");
+ errs() << "Scoreboard:\n";
unsigned last = ScoreboardDepth - 1;
while ((last > 0) && (Scoreboard[getFutureIndex(last)] == 0))
for (unsigned i = 0; i <= last; i++) {
unsigned FUs = Scoreboard[getFutureIndex(i)];
- DEBUG(errs() << "\t");
+ errs() << "\t";
for (int j = 31; j >= 0; j--)
- DEBUG(errs() << ((FUs & (1 << j)) ? '1' : '0'));
- DEBUG(errs() << '\n');
+ errs() << ((FUs & (1 << j)) ? '1' : '0');
+ errs() << '\n';
}
}