Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 09d2bc38c6832e30131de63a7bbe1af8fba4bf9c..3a9ce3f43063b974d227833d2b0254170c9f4b01 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -91,7 +91,6 @@ bool Interpreter::MakeBytecode(CompilationInfo* info) { |
Handle<BytecodeArray> bytecodes = generator.MakeBytecode(info); |
if (FLAG_print_bytecode) { |
OFStream os(stdout); |
- os << "Function: " << info->GetDebugName().get() << std::endl; |
bytecodes->Print(os); |
os << std::flush; |
} |
@@ -1788,6 +1787,14 @@ void Interpreter::DoCreateRestArguments( |
__ Dispatch(); |
} |
+// StackCheck |
+// |
+// Performs a stack guard check. |
+void Interpreter::DoStackCheck(compiler::InterpreterAssembler* assembler) { |
+ __ StackCheck(); |
+ __ Dispatch(); |
+} |
+ |
// Throw |
// |
// Throws the exception in the accumulator. |