Index: src/runtime/runtime-function.cc |
diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc |
index 936aebdd1f543104df433598e2ae07731d161f8e..b294835916124dd11dd2c6dba11cf32e0b4aa8aa 100644 |
--- a/src/runtime/runtime-function.cc |
+++ b/src/runtime/runtime-function.cc |
@@ -602,17 +602,6 @@ RUNTIME_FUNCTION(Runtime_ConvertReceiver) { |
} |
-RUNTIME_FUNCTION(Runtime_IsConstructCall) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 0); |
- JavaScriptFrameIterator it(isolate); |
- List<FrameSummary> frames(FLAG_max_inlining_levels + 1); |
- it.frame()->Summarize(&frames); |
- FrameSummary& summary = frames.last(); |
- return isolate->heap()->ToBoolean(summary.is_constructor()); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_IsFunction) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |