| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 20a9090e704db25a2fdb23a8fd3251c0182ce12d..320ab59f3cb876f18bc5d93c713952efc573537d 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -8358,7 +8358,9 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_CompileForOnStackReplacement) {
|
| PrintF("]\n");
|
| }
|
| Handle<Code> check_code;
|
| -#if defined(V8_TARGET_ARCH_IA32) || defined(V8_TARGET_ARCH_ARM)
|
| +#if defined(V8_TARGET_ARCH_IA32) || \
|
| + defined(V8_TARGET_ARCH_ARM) || \
|
| + defined(V8_TARGET_ARCH_MIPS)
|
| if (FLAG_count_based_interrupts) {
|
| InterruptStub interrupt_stub;
|
| check_code = interrupt_stub.GetCode();
|
|
|