| Index: src/heap.cc
|
| ===================================================================
|
| --- src/heap.cc (revision 11067)
|
| +++ src/heap.cc (working copy)
|
| @@ -2470,34 +2470,26 @@
|
| set_the_hole_value(Oddball::cast(obj));
|
|
|
| { MaybeObject* maybe_obj = CreateOddball("arguments_marker",
|
| - Smi::FromInt(-2),
|
| + Smi::FromInt(-4),
|
| Oddball::kArgumentMarker);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
| }
|
| set_arguments_marker(Oddball::cast(obj));
|
|
|
| { MaybeObject* maybe_obj = CreateOddball("no_interceptor_result_sentinel",
|
| - Smi::FromInt(-3),
|
| + Smi::FromInt(-2),
|
| Oddball::kOther);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
| }
|
| set_no_interceptor_result_sentinel(obj);
|
|
|
| { MaybeObject* maybe_obj = CreateOddball("termination_exception",
|
| - Smi::FromInt(-4),
|
| + Smi::FromInt(-3),
|
| Oddball::kOther);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
| }
|
| set_termination_exception(obj);
|
|
|
| - { MaybeObject* maybe_obj = CreateOddball("frame_alignment_marker",
|
| - Smi::FromInt(-5),
|
| - Oddball::kOther);
|
| - if (!maybe_obj->ToObject(&obj)) return false;
|
| - }
|
| - set_frame_alignment_marker(Oddball::cast(obj));
|
| - STATIC_ASSERT(Oddball::kLeastHiddenOddballNumber == -5);
|
| -
|
| // Allocate the empty string.
|
| { MaybeObject* maybe_obj = AllocateRawAsciiString(0, TENURED);
|
| if (!maybe_obj->ToObject(&obj)) return false;
|
|
|