Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 6b75886ebdfe63c967433e64fd4ed50a6af99cf0..7f2a47fd4ccc6090d0c0a54baed9c1b3e4ccf635 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2145,8 +2145,8 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* object = UseFixed(instr->object(), KeyedLoadIC::ReceiverRegister()); |
- LOperand* key = UseFixed(instr->key(), KeyedLoadIC::NameRegister()); |
+ LOperand* object = UseFixed(instr->object(), LoadIC::ReceiverRegister()); |
+ LOperand* key = UseFixed(instr->key(), LoadIC::NameRegister()); |
LInstruction* result = |
DefineFixed(new(zone()) LLoadKeyedGeneric(context, object, key), v0); |