Revert "[SPARC] Switch to the Machine Scheduler."

This reverts commit r247315.

Accidentally omitted test changes; will resubmit full change shortly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
James Y Knight 2015-09-10 19:42:03 +00:00
parent 1c018c2ad0
commit ec31826840
2 changed files with 1 additions and 6 deletions

View File

@ -81,7 +81,3 @@ int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
}
return frameSize;
}
bool SparcSubtarget::enableMachineScheduler() const {
return true;
}

View File

@ -60,8 +60,6 @@ public:
return &TSInfo;
}
bool enableMachineScheduler() const override;
bool isV9() const { return IsV9; }
bool isVIS() const { return IsVIS; }
bool isVIS2() const { return IsVIS2; }
@ -87,6 +85,7 @@ public:
/// returns adjusted framesize which includes space for register window
/// spills and arguments.
int getAdjustedFrameSize(int stackSize) const;
};
} // end namespace llvm