| Index: src/runtime.h
|
| ===================================================================
|
| --- src/runtime.h (revision 8462)
|
| +++ src/runtime.h (working copy)
|
| @@ -298,8 +298,8 @@
|
| \
|
| /* Contexts */ \
|
| F(NewFunctionContext, 1, 1) \
|
| - F(PushWithContext, 1, 1) \
|
| - F(PushCatchContext, 2, 1) \
|
| + F(PushWithContext, 2, 1) \
|
| + F(PushCatchContext, 3, 1) \
|
| F(DeleteContextSlot, 2, 1) \
|
| F(LoadContextSlot, 2, 2) \
|
| F(LoadContextSlotNoReferenceError, 2, 2) \
|
| @@ -519,12 +519,6 @@
|
| StringInputBuffer* string_locale_compare_buf2() {
|
| return &string_locale_compare_buf2_;
|
| }
|
| - int* smi_lexicographic_compare_x_elms() {
|
| - return smi_lexicographic_compare_x_elms_;
|
| - }
|
| - int* smi_lexicographic_compare_y_elms() {
|
| - return smi_lexicographic_compare_y_elms_;
|
| - }
|
|
|
| private:
|
| RuntimeState() {}
|
| @@ -536,8 +530,6 @@
|
| StringInputBuffer string_input_buffer_compare_bufy_;
|
| StringInputBuffer string_locale_compare_buf1_;
|
| StringInputBuffer string_locale_compare_buf2_;
|
| - int smi_lexicographic_compare_x_elms_[10];
|
| - int smi_lexicographic_compare_y_elms_[10];
|
|
|
| friend class Isolate;
|
| friend class Runtime;
|
|
|