| Index: src/objects.cc
|
| ===================================================================
|
| --- src/objects.cc (revision 6795)
|
| +++ src/objects.cc (working copy)
|
| @@ -6015,7 +6015,7 @@
|
| void Code::SetNoStackCheckTable() {
|
| // Indicate the absence of a stack-check table by a table start after the
|
| // end of the instructions. Table start must be aligned, so round up.
|
| - set_stack_check_table_start(RoundUp(instruction_size(), kIntSize));
|
| + set_stack_check_table_offset(RoundUp(instruction_size(), kIntSize));
|
| }
|
|
|
|
|
| @@ -6292,7 +6292,7 @@
|
| }
|
| PrintF(out, "\n");
|
| } else if (kind() == FUNCTION) {
|
| - unsigned offset = stack_check_table_start();
|
| + unsigned offset = stack_check_table_offset();
|
| // If there is no stack check table, the "table start" will at or after
|
| // (due to alignment) the end of the instruction stream.
|
| if (static_cast<int>(offset) < instruction_size()) {
|
|
|