| Index: src/crankshaft/arm/lithium-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc
|
| index 3bf5e60b10b86e86b2e9b8bf5c02b441ca940e0b..324dcfefa8190255c69f8c173086997deed408b9 100644
|
| --- a/src/crankshaft/arm/lithium-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-arm.cc
|
| @@ -2191,8 +2191,8 @@ LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
| DCHECK(instr->key()->representation().IsTagged());
|
| DCHECK(instr->value()->representation().IsTagged());
|
|
|
| - LOperand* slot = FixedTemp(VectorStoreICDescriptor::SlotRegister());
|
| - LOperand* vector = FixedTemp(VectorStoreICDescriptor::VectorRegister());
|
| + LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister());
|
| + LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister());
|
|
|
| LStoreKeyedGeneric* result =
|
| new (zone()) LStoreKeyedGeneric(context, obj, key, val, slot, vector);
|
| @@ -2281,8 +2281,8 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| LOperand* obj =
|
| UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| LOperand* val = UseFixed(instr->value(), StoreDescriptor::ValueRegister());
|
| - LOperand* slot = FixedTemp(VectorStoreICDescriptor::SlotRegister());
|
| - LOperand* vector = FixedTemp(VectorStoreICDescriptor::VectorRegister());
|
| + LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister());
|
| + LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister());
|
|
|
| LStoreNamedGeneric* result =
|
| new (zone()) LStoreNamedGeneric(context, obj, val, slot, vector);
|
|
|