| Index: src/full-codegen.cc
|
| ===================================================================
|
| --- src/full-codegen.cc (revision 7006)
|
| +++ src/full-codegen.cc (working copy)
|
| @@ -305,7 +305,7 @@
|
| cgen.PopulateDeoptimizationData(code);
|
| code->set_has_deoptimization_support(info->HasDeoptimizationSupport());
|
| code->set_allow_osr_at_loop_nesting_level(0);
|
| - code->set_stack_check_table_start(table_offset);
|
| + code->set_stack_check_table_offset(table_offset);
|
| CodeGenerator::PrintCode(code, info);
|
| info->SetCode(code); // may be an empty handle.
|
| #ifdef ENABLE_GDB_JIT_INTERFACE
|
| @@ -916,7 +916,7 @@
|
| Breakable nested_statement(this, stmt);
|
| SetStatementPosition(stmt);
|
|
|
| - PrepareForBailoutForId(stmt->EntryId(), TOS_REG);
|
| + PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
|
| VisitStatements(stmt->statements());
|
| __ bind(nested_statement.break_target());
|
| PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
|
|
|