[llvm] r247328 - Revert "[SPARC] Switch to the Machine Scheduler."
James Y Knight via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 10 12:42:04 PDT 2015
Author: jyknight
Date: Thu Sep 10 14:42:03 2015
New Revision: 247328
URL: http://llvm.org/viewvc/llvm-project?rev=247328&view=rev
Log:
Revert "[SPARC] Switch to the Machine Scheduler."
This reverts commit r247315.
Accidentally omitted test changes; will resubmit full change shortly.
Modified:
llvm/trunk/lib/Target/Sparc/SparcSubtarget.cpp
llvm/trunk/lib/Target/Sparc/SparcSubtarget.h
Modified: llvm/trunk/lib/Target/Sparc/SparcSubtarget.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Sparc/SparcSubtarget.cpp?rev=247328&r1=247327&r2=247328&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Sparc/SparcSubtarget.cpp (original)
+++ llvm/trunk/lib/Target/Sparc/SparcSubtarget.cpp Thu Sep 10 14:42:03 2015
@@ -81,7 +81,3 @@ int SparcSubtarget::getAdjustedFrameSize
}
return frameSize;
}
-
-bool SparcSubtarget::enableMachineScheduler() const {
- return true;
-}
Modified: llvm/trunk/lib/Target/Sparc/SparcSubtarget.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Sparc/SparcSubtarget.h?rev=247328&r1=247327&r2=247328&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Sparc/SparcSubtarget.h (original)
+++ llvm/trunk/lib/Target/Sparc/SparcSubtarget.h Thu Sep 10 14:42:03 2015
@@ -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
More information about the llvm-commits
mailing list