| Index: src/mips/full-codegen-mips.cc
|
| diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
|
| index 2176725665c4e16c16168ceaf5f3f8b3f180c620..bce24355e18f9b9908868b7b8a3f34b6b3b7bb10 100644
|
| --- a/src/mips/full-codegen-mips.cc
|
| +++ b/src/mips/full-codegen-mips.cc
|
| @@ -4756,6 +4756,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
| VisitForStackValue(args->at(i));
|
| }
|
|
|
| + PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
|
| EmitCallJSRuntimeFunction(expr);
|
|
|
| // Restore context register.
|
| @@ -4781,6 +4782,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) {
|
| }
|
|
|
| // Call the C runtime function.
|
| + PrepareForBailoutForId(expr->CallId(), NO_REGISTERS);
|
| __ CallRuntime(expr->function(), arg_count);
|
| context()->Plug(v0);
|
| }
|
|
|