Commit 3fbd1c00 authored by Dávid Bolvanský's avatar Dávid Bolvanský
Browse files

[SIMachineScheduler] Fixed ''then' statement is equivalent to the 'else' statement.' warning. NFCI.

parent c3d6f0dd
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -609,13 +609,8 @@ void SIScheduleBlock::printDebug(bool full) {
  }

  dbgs() << "\nInstructions:\n";
  if (!Scheduled) {
  for (const SUnit* SU : SUnits)
      DAG->dumpNode(*SU);
  } else {
    for (const SUnit* SU : SUnits)
      DAG->dumpNode(*SU);
  }

  dbgs() << "///////////////////////\n";
}