mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
RegisterPressure heuristics currently require signed comparisons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178823 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1660,7 +1660,7 @@ initResourceDelta(const ScheduleDAGMI *DAG,
|
||||
}
|
||||
|
||||
/// Return true if this heuristic determines order.
|
||||
static bool tryLess(unsigned TryVal, unsigned CandVal,
|
||||
static bool tryLess(int TryVal, int CandVal,
|
||||
ConvergingScheduler::SchedCandidate &TryCand,
|
||||
ConvergingScheduler::SchedCandidate &Cand,
|
||||
ConvergingScheduler::CandReason Reason) {
|
||||
@ -1676,7 +1676,7 @@ static bool tryLess(unsigned TryVal, unsigned CandVal,
|
||||
return false;
|
||||
}
|
||||
|
||||
static bool tryGreater(unsigned TryVal, unsigned CandVal,
|
||||
static bool tryGreater(int TryVal, int CandVal,
|
||||
ConvergingScheduler::SchedCandidate &TryCand,
|
||||
ConvergingScheduler::SchedCandidate &Cand,
|
||||
ConvergingScheduler::CandReason Reason) {
|
||||
|
Reference in New Issue
Block a user