| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index 71100da3412ccfa85c82300b50f63aae7704f8d1..2e5fbec2d0e78bad49e205b3b6c4f7b47799d8f2 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -3076,13 +3076,13 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
|
| { // length
|
| Descriptor d = Descriptor::DataField(
|
| factory->length_string(), JSSloppyArgumentsObject::kLengthIndex,
|
| - DONT_ENUM, Representation::Smi());
|
| + DONT_ENUM, Representation::Tagged());
|
| map->AppendDescriptor(&d);
|
| }
|
| { // callee
|
| Descriptor d = Descriptor::DataField(
|
| factory->callee_string(), JSSloppyArgumentsObject::kCalleeIndex,
|
| - DONT_ENUM, Representation::HeapObject());
|
| + DONT_ENUM, Representation::Tagged());
|
| map->AppendDescriptor(&d);
|
| }
|
| // @@iterator method is added later.
|
| @@ -3133,7 +3133,7 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
|
| { // length
|
| Descriptor d = Descriptor::DataField(
|
| factory->length_string(), JSStrictArgumentsObject::kLengthIndex,
|
| - DONT_ENUM, Representation::Smi());
|
| + DONT_ENUM, Representation::Tagged());
|
| map->AppendDescriptor(&d);
|
| }
|
| { // callee
|
|
|