| Index: src/crankshaft/x87/lithium-x87.cc
|
| diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc
|
| index 4d88b5f4c5439c64f890e9cdd09abe9a3d813008..f614b93c9c631eb49b923b751e7dd68946018e87 100644
|
| --- a/src/crankshaft/x87/lithium-x87.cc
|
| +++ b/src/crankshaft/x87/lithium-x87.cc
|
| @@ -2224,8 +2224,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);
|
| @@ -2339,8 +2339,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);
|
|
|