Index: src/crankshaft/mips64/lithium-mips64.cc |
diff --git a/src/crankshaft/mips64/lithium-mips64.cc b/src/crankshaft/mips64/lithium-mips64.cc |
index 6210bbe1db24ccab5b18f4cc73441f1edbd0bab7..922f12ada85f39db4129b7d5a27dc48fb95513ad 100644 |
--- a/src/crankshaft/mips64/lithium-mips64.cc |
+++ b/src/crankshaft/mips64/lithium-mips64.cc |
@@ -2143,8 +2143,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); |
@@ -2233,8 +2233,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); |