Index: src/frames.h |
diff --git a/src/frames.h b/src/frames.h |
index 6b51fb868cd68fa3bf226d7c695a2cc152cf2535..953b6066aa1098a72566f869abbba951ac5cb103 100644 |
--- a/src/frames.h |
+++ b/src/frames.h |
@@ -907,7 +907,8 @@ class InterpretedFrame : public JavaScriptFrame { |
void PatchBytecodeArray(BytecodeArray* bytecode_array); |
// Access to the interpreter register file for this frame. |
- Object* GetInterpreterRegister(int register_index) const; |
+ Object* ReadInterpreterRegister(int register_index) const; |
+ void WriteInterpreterRegister(int register_index, Object* value); |
// Build a list with summaries for this frame including all inlined frames. |
void Summarize(List<FrameSummary>* frames) const override; |