Index: src/frames.cc |
diff --git a/src/frames.cc b/src/frames.cc |
index 9f46d8e8b5cb0687daf4361fafdaf34c46516e23..5ecffaf7b10f1b8e6dcba021a98c901e3460c6d4 100644 |
--- a/src/frames.cc |
+++ b/src/frames.cc |
@@ -1057,15 +1057,6 @@ void JavaScriptFrame::PrintTop(Isolate* isolate, FILE* file, bool print_args, |
} |
} |
- |
-void JavaScriptFrame::SaveOperandStack(FixedArray* store) const { |
- int operands_count = store->length(); |
- DCHECK_LE(operands_count, ComputeOperandsCount()); |
- for (int i = 0; i < operands_count; i++) { |
- store->set(i, GetOperand(i)); |
- } |
-} |
- |
Object* JavaScriptFrame::GetParameter(int index) const { |
return Memory::Object_at(GetParameterSlot(index)); |
} |