Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index 5bc51621f0100ca7693a6b676194edc0c5872007..e5a870094801e9e350de82bf0eb52a93ac7535bd 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -675,7 +675,7 @@ void FullCodeGenerator::DoTest(Expression* condition, |
Label* fall_through) { |
if (CpuFeatures::IsSupported(FPU)) { |
ToBooleanStub stub(result_register()); |
- __ CallStub(&stub); |
+ __ CallStub(&stub, condition->test_id()); |
__ mov(at, zero_reg); |
} else { |
// Call the runtime to find the boolean value of the source and then |
@@ -2353,7 +2353,7 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr, CallFunctionFlags flags) { |
CallFunctionStub stub(arg_count, flags); |
__ lw(a1, MemOperand(sp, (arg_count + 1) * kPointerSize)); |
- __ CallStub(&stub); |
+ __ CallStub(&stub, expr->CallFeedbackId()); |
RecordJSReturnSite(expr); |
// Restore context register. |
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); |