Bug 1909587: Correct MoveEmitter switch case a=dmeehan

This seems to be a accidental change made in D198105.

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>

Original Revision: https://phabricator.services.mozilla.com/D217671

Differential Revision: https://phabricator.services.mozilla.com/D218286
This commit is contained in:
Jiaxun Yang 2024-08-06 14:29:26 +00:00
parent aa52c6f8c5
commit a887a2475f

View file

@ -30,7 +30,7 @@ void MoveEmitterMIPS64::breakCycle(const MoveOperand& from,
masm.storeFloat32(to.floatReg(), cycleSlot(slotId));
}
break;
case ABIType::Float64:
case MoveOp::DOUBLE:
if (to.isMemory()) {
FloatRegister temp = ScratchDoubleReg;
masm.loadDouble(getAdjustedAddress(to), temp);
@ -85,7 +85,7 @@ void MoveEmitterMIPS64::completeCycle(const MoveOperand& from,
masm.loadFloat32(cycleSlot(slotId), to.floatReg());
}
break;
case ABIType::Float64:
case MoveOp::DOUBLE:
if (to.isMemory()) {
FloatRegister temp = ScratchDoubleReg;
masm.loadDouble(cycleSlot(slotId), temp);