Index: src/frames.cc |
diff --git a/src/frames.cc b/src/frames.cc |
index 0e57429ea3077e2f50e056369ff6406b0ed34b70..de3ab3026ec06dcb95a3461e019fd9bec07e08a7 100644 |
--- a/src/frames.cc |
+++ b/src/frames.cc |
@@ -944,16 +944,6 @@ void JavaScriptFrame::SaveOperandStack(FixedArray* store) const { |
} |
} |
- |
-void JavaScriptFrame::RestoreOperandStack(FixedArray* store) { |
- int operands_count = store->length(); |
- DCHECK_LE(operands_count, ComputeOperandsCount()); |
- for (int i = 0; i < operands_count; i++) { |
- DCHECK_EQ(GetOperand(i), isolate()->heap()->the_hole_value()); |
- Memory::Object_at(GetOperandSlot(i)) = store->get(i); |
- } |
-} |
- |
namespace { |
bool CannotDeoptFromAsmCode(Code* code, JSFunction* function) { |