Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index 607025cbdced12d3b47713418c12aa71d6481ee1..8a2a13a678f331c590c45fb97fa6b4ad341880f1 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -2082,7 +2082,7 @@ void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) { |
// We use Factory::the_hole_value() on purpose instead of loading from the |
// root array to force relocation to be able to later patch |
// with true or false. |
- __ li(result, Operand(factory()->the_hole_value()), true); |
+ __ li(result, Operand(factory()->the_hole_value()), CONSTANT_SIZE); |
__ Branch(&done); |
// The inlined call site cache did not match. Check null and string before |
@@ -2137,7 +2137,7 @@ void LCodeGen::DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, |
__ bind(&before_push_delta); |
{ |
Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_); |
- __ li(temp, Operand(delta * kPointerSize), true); |
+ __ li(temp, Operand(delta * kPointerSize), CONSTANT_SIZE); |
__ StoreToSafepointRegisterSlot(temp, temp); |
} |
CallCodeGeneric(stub.GetCode(), |