Index: src/x64/lithium-x64.cc |
=================================================================== |
--- src/x64/lithium-x64.cc (revision 7010) |
+++ src/x64/lithium-x64.cc (working copy) |
@@ -1531,8 +1531,9 @@ |
LInstruction* LChunkBuilder::DoHasCachedArrayIndex( |
HHasCachedArrayIndex* instr) { |
- Abort("Unimplemented: %s", "DoHasCachedArrayIndex"); |
- return NULL; |
+ ASSERT(instr->value()->representation().IsTagged()); |
+ LOperand* value = UseRegister(instr->value()); |
+ return DefineAsRegister(new LHasCachedArrayIndex(value)); |
} |