Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index dc8a99f28fd5b236f2e874b1ebec58535f8792a0..a7880eee87d2a7ce18708c2ee5286d0e943888e4 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -2138,8 +2138,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); |
@@ -2228,8 +2228,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); |