Skip to content

Commit 5c672d8

Browse files
committed
Fix MSVC signed/unsigned mismatch warning. NFC.
1 parent 3b6d63c commit 5c672d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/ARM/ARMISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1981,7 +1981,7 @@ Sched::Preference ARMTargetLowering::getSchedulingPreference(SDNode *N) const {
19811981
if (MCID.getNumDefs() == 0)
19821982
return Sched::RegPressure;
19831983
if (!Itins->isEmpty() &&
1984-
Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2)
1984+
Itins->getOperandCycle(MCID.getSchedClass(), 0) > 2U)
19851985
return Sched::ILP;
19861986

19871987
return Sched::RegPressure;

0 commit comments

Comments
 (0)