| Index: src/code-stubs-hydrogen.cc
|
| diff --git a/src/code-stubs-hydrogen.cc b/src/code-stubs-hydrogen.cc
|
| index 587496fecd1ddf53a32a2a5564aa9cb43f086074..ee9c26760cc8f4a804a57deddea83dbda60853f2 100644
|
| --- a/src/code-stubs-hydrogen.cc
|
| +++ b/src/code-stubs-hydrogen.cc
|
| @@ -1829,10 +1829,10 @@ Handle<Code> StoreGlobalViaContextStub::GenerateCode() {
|
|
|
| template <>
|
| HValue* CodeStubGraphBuilder<ElementsTransitionAndStoreStub>::BuildCodeStub() {
|
| - HValue* value = GetParameter(ElementsTransitionAndStoreStub::kValueIndex);
|
| - HValue* map = GetParameter(ElementsTransitionAndStoreStub::kMapIndex);
|
| - HValue* key = GetParameter(ElementsTransitionAndStoreStub::kKeyIndex);
|
| - HValue* object = GetParameter(ElementsTransitionAndStoreStub::kObjectIndex);
|
| + HValue* object = GetParameter(StoreTransitionDescriptor::kReceiverIndex);
|
| + HValue* key = GetParameter(StoreTransitionDescriptor::kNameIndex);
|
| + HValue* value = GetParameter(StoreTransitionDescriptor::kValueIndex);
|
| + HValue* map = GetParameter(StoreTransitionDescriptor::kMapIndex);
|
|
|
| if (FLAG_trace_elements_transitions) {
|
| // Tracing elements transitions is the job of the runtime.
|
|
|