Index: src/a64/codegen-a64.cc |
diff --git a/src/a64/codegen-a64.cc b/src/a64/codegen-a64.cc |
index b7cd5a1c161752a3d8d55805a1a608bed9ea2646..32b32757817693ca5d20b94248db6c5002180d0e 100644 |
--- a/src/a64/codegen-a64.cc |
+++ b/src/a64/codegen-a64.cc |
@@ -519,7 +519,7 @@ void MathExpGenerator::EmitMathExp(MacroAssembler* masm, |
// ExternalReference::InitializeMathExpData(). |
// Load the address of the start of the array. |
- __ Mov(constants, Operand(ExternalReference::math_exp_constants(0))); |
+ __ Mov(constants, ExternalReference::math_exp_constants(0)); |
// We have to do a four-way split here: |
// - If input <= about -708.4, the output always rounds to zero. |
@@ -595,7 +595,7 @@ void MathExpGenerator::EmitMathExp(MacroAssembler* masm, |
__ Add(temp1, temp1, 0x3ff); |
// Do the final table lookup. |
- __ Mov(temp3, Operand(ExternalReference::math_exp_log_table())); |
+ __ Mov(temp3, ExternalReference::math_exp_log_table()); |
__ Add(temp3, temp3, Operand(temp2, LSL, kDRegSizeLog2)); |
__ Ldp(temp2.W(), temp3.W(), MemOperand(temp3)); |