mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-16 06:49:58 +00:00
Remove redundant private field.
clang warned about this being unused in Release builds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163899 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b547a2af5
commit
e5c4fe568e
@ -123,7 +123,7 @@ void VLIWMachineScheduler::schedule() {
|
||||
<< "********** MI Converging Scheduling VLIW BB#" << BB->getNumber()
|
||||
<< " " << BB->getName()
|
||||
<< " in_func " << BB->getParent()->getFunction()->getName()
|
||||
<< " at loop depth " << MLI->getLoopDepth(BB)
|
||||
<< " at loop depth " << MLI.getLoopDepth(BB)
|
||||
<< " \n");
|
||||
|
||||
buildDAGWithRegPressure();
|
||||
|
@ -107,10 +107,9 @@ public:
|
||||
/// Extend the standard ScheduleDAGMI to provide more context and override the
|
||||
/// top-level schedule() driver.
|
||||
class VLIWMachineScheduler : public ScheduleDAGMI {
|
||||
const MachineLoopInfo *MLI;
|
||||
public:
|
||||
VLIWMachineScheduler(MachineSchedContext *C, MachineSchedStrategy *S):
|
||||
ScheduleDAGMI(C, S), MLI(C->MLI) {}
|
||||
ScheduleDAGMI(C, S) {}
|
||||
|
||||
/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
|
||||
/// time to do some work.
|
||||
|
Loading…
x
Reference in New Issue
Block a user