Index: src/full-codegen/mips/full-codegen-mips.cc |
diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc |
index 05e3ead6dee1c28dbbc471dde38ce6ca4212ef2b..e1e9efae08137005b32dae25805e25be6bb32851 100644 |
--- a/src/full-codegen/mips/full-codegen-mips.cc |
+++ b/src/full-codegen/mips/full-codegen-mips.cc |
@@ -450,15 +450,13 @@ void FullCodeGenerator::EmitReturnSequence() { |
// Make sure that the constant pool is not emitted inside of the return |
// sequence. |
{ Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm_); |
- // Here we use masm_-> instead of the __ macro to avoid the code coverage |
- // tool from instrumenting as we rely on the code size here. |
int32_t arg_count = info_->scope()->num_parameters() + 1; |
int32_t sp_delta = arg_count * kPointerSize; |
SetReturnPosition(literal()); |
- masm_->mov(sp, fp); |
- masm_->MultiPop(static_cast<RegList>(fp.bit() | ra.bit())); |
- masm_->Addu(sp, sp, Operand(sp_delta)); |
- masm_->Jump(ra); |
+ __ mov(sp, fp); |
+ __ MultiPop(static_cast<RegList>(fp.bit() | ra.bit())); |
+ __ Addu(sp, sp, Operand(sp_delta)); |
+ __ Jump(ra); |
} |
} |
} |