Skip to content

Commit

Permalink
[CodeGen][MachineScheduler] Remove the unimplemented print method. (l…
Browse files Browse the repository at this point in the history
  • Loading branch information
cdevadas authored Feb 5, 2025
1 parent 1d22318 commit 68e7df3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions llvm/lib/CodeGen/MachineScheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ class MachineSchedulerBase : public MachineSchedContext,
public:
MachineSchedulerBase(char &ID): MachineFunctionPass(ID) {}

void print(raw_ostream &O, const Module* = nullptr) const override;

protected:
void scheduleRegions(ScheduleDAGInstrs &Scheduler, bool FixKillFlags);
};
Expand Down Expand Up @@ -666,10 +664,6 @@ void MachineSchedulerBase::scheduleRegions(ScheduleDAGInstrs &Scheduler,
Scheduler.finalizeSchedule();
}

void MachineSchedulerBase::print(raw_ostream &O, const Module* m) const {
// unimplemented
}

#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
LLVM_DUMP_METHOD void ReadyQueue::dump() const {
dbgs() << "Queue " << Name << ": ";
Expand Down

0 comments on commit 68e7df3

Please sign in to comment.