File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -4934,20 +4934,6 @@ void LinearScan::processBlockStartLocations(BasicBlock* currentBlock)
49344934 unassignIntervalBlockStart (getSecondHalfRegRec (targetRegRecord),
49354935 allocationPassComplete ? nullptr : inVarToRegMap);
49364936 }
4937-
4938- // If this is a TYP_FLOAT interval, and the assigned interval was TYP_DOUBLE, we also
4939- // need to update the liveRegs to specify that the other half is not live anymore.
4940- // As mentioned above, for TYP_DOUBLE, the other half will be unassigned further below.
4941- if ((interval->registerType == TYP_FLOAT) &&
4942- ((targetRegRecord->assignedInterval != nullptr ) &&
4943- (targetRegRecord->assignedInterval ->registerType == TYP_DOUBLE)))
4944- {
4945- RegRecord* anotherHalfRegRec = findAnotherHalfRegRec (targetRegRecord);
4946-
4947- // Use TYP_FLOAT to get the regmask of just the half reg.
4948- liveRegs &= ~getRegMask (anotherHalfRegRec->regNum, TYP_FLOAT);
4949- }
4950-
49514937#endif // TARGET_ARM
49524938 unassignIntervalBlockStart (targetRegRecord, allocationPassComplete ? nullptr : inVarToRegMap);
49534939 assignPhysReg (targetRegRecord, interval);
You can’t perform that action at this time.
0 commit comments