| Index: src/builtins.cc
|
| diff --git a/src/builtins.cc b/src/builtins.cc
|
| index 3f68642bb2427b2bd14770b0f191e7d1b56aad04..fc98338f20e4795428cf0e049e4343dbc3a3dca9 100644
|
| --- a/src/builtins.cc
|
| +++ b/src/builtins.cc
|
| @@ -214,7 +214,7 @@ static MaybeObject* ArrayCodeGenericCommon(Arguments* args,
|
| AllocationSiteInfo* info = AllocationSiteInfo::FindForJSObject(array);
|
| if (info != NULL && info->IsValid()) {
|
| AllocationSite* site = info->GetAllocationSite();
|
| - ElementsKind to_kind = site->GetElementsKindPayload();
|
| + ElementsKind to_kind = site->GetElementsKind();
|
| if (IsMoreGeneralElementsKindTransition(array->GetElementsKind(),
|
| to_kind)) {
|
| // We have advice that we should change the elements kind
|
|
|