Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 50a4cc9598cdd60d22d6a7c7dc7d0b7564e0aa69..97a52710a5c82cf8a0931ef612d3befb141088e3 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -11209,15 +11209,6 @@ static SaveContext* FindSavedContextForFrame(Isolate* isolate, |
} |
-RUNTIME_FUNCTION(Runtime_IsOptimized) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 0); |
- JavaScriptFrameIterator it(isolate); |
- JavaScriptFrame* frame = it.frame(); |
- return isolate->heap()->ToBoolean(frame->is_optimized()); |
-} |
- |
- |
// Advances the iterator to the frame that matches the index and returns the |
// inlined frame index, or -1 if not found. Skips native JS functions. |
static int FindIndexedNonNativeFrame(JavaScriptFrameIterator* it, int index) { |