Skip to content

Commit cec1eab

Browse files
committed
MachineScheduler: Add parameter name comments
1 parent e67f2cc commit cec1eab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/CodeGen/MachineScheduler.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1664,7 +1664,8 @@ void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
16641664
if (ShouldTrackPressure) {
16651665
// Update top scheduled pressure.
16661666
RegisterOperands RegOpers;
1667-
RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1667+
RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks,
1668+
/*IgnoreDead=*/false);
16681669
if (ShouldTrackLaneMasks) {
16691670
// Adjust liveness and add missing dead+read-undef flags.
16701671
SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();
@@ -1698,7 +1699,8 @@ void ScheduleDAGMILive::scheduleMI(SUnit *SU, bool IsTopNode) {
16981699
}
16991700
if (ShouldTrackPressure) {
17001701
RegisterOperands RegOpers;
1701-
RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks, false);
1702+
RegOpers.collect(*MI, *TRI, MRI, ShouldTrackLaneMasks,
1703+
/*IgnoreDead=*/false);
17021704
if (ShouldTrackLaneMasks) {
17031705
// Adjust liveness and add missing dead+read-undef flags.
17041706
SlotIndex SlotIdx = LIS->getInstructionIndex(*MI).getRegSlot();

0 commit comments

Comments
 (0)