diff options
-rw-r--r-- | llvm/include/llvm/MCA/HardwareUnits/LSUnit.h | 1 | ||||
-rw-r--r-- | llvm/include/llvm/MCA/HardwareUnits/Scheduler.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h b/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h index 5ed2b5bc814..c9e1cc3cdc4 100644 --- a/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h +++ b/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h @@ -143,7 +143,6 @@ class LSUnit : public HardwareUnit { void assignLQSlot(unsigned Index); void assignSQSlot(unsigned Index); - bool isReadyNoAlias(unsigned Index) const; // An instruction that both 'mayStore' and 'HasUnmodeledSideEffects' is // conservatively treated as a store barrier. It forces older store to be diff --git a/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h b/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h index fc618a77d70..dc6722c4e85 100644 --- a/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h +++ b/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h @@ -225,9 +225,6 @@ public: /// resources are not available. InstRef select(); - bool arePipelinesFullyUsed() const { - return !Resources->getAvailableProcResUnits(); - } bool isReadySetEmpty() const { return ReadySet.empty(); } bool isWaitSetEmpty() const { return WaitSet.empty(); } |