Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index ab7779dd2f558141502a8ed7c907b685bbea691e..de7a0bd0264894755c6d3f02d9baaadbff37e1f6 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1630,9 +1630,7 @@ |
// |
// Return the value in the accumulator. |
void Interpreter::DoReturn(InterpreterAssembler* assembler) { |
- __ UpdateInterruptBudgetOnReturn(); |
- Node* accumulator = __ GetAccumulator(); |
- __ Return(accumulator); |
+ __ InterpreterReturn(); |
} |
// Debugger |