| Index: src/crankshaft/ia32/lithium-ia32.cc
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc
|
| index 678876bc2c303df411ade372fd3b4180a89454b0..67942241e6f1993557dec0ef28dd9806ddde7e53 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.cc
|
| +++ b/src/crankshaft/ia32/lithium-ia32.cc
|
| @@ -2222,8 +2222,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, object, key, value, slot, vector);
|
| @@ -2337,8 +2337,8 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| LOperand* object =
|
| UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| LOperand* value = 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, object, value, slot, vector);
|
|
|