Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index fec1460e8f21b82c3afe841402accd825d748ed9..6377a080b19b7d30c356421236b256b781a9f20b 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -8358,14 +8358,10 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_CompileForOnStackReplacement) { |
PrintF("]\n"); |
} |
Handle<Code> check_code; |
-#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(); |
} else // NOLINT |
-#endif |
{ // NOLINT |
StackCheckStub check_stub; |
check_code = check_stub.GetCode(); |