Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 9211b56653f2bce095fe90262d2ad86252df3c34..48a818c9657324e7571949ab60efd96c329744aa 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -8070,6 +8070,13 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_RunningInSimulator) { |
} |
+RUNTIME_FUNCTION(MaybeObject*, Runtime_IsParallelRecompilationSupported) { |
+ HandleScope scope(isolate); |
+ return FLAG_parallel_recompilation |
+ ? isolate->heap()->true_value() : isolate->heap()->false_value(); |
+} |
+ |
+ |
RUNTIME_FUNCTION(MaybeObject*, Runtime_OptimizeFunctionOnNextCall) { |
HandleScope scope(isolate); |
RUNTIME_ASSERT(args.length() == 1 || args.length() == 2); |