Index: src/x64/lithium-x64.cc |
=================================================================== |
--- src/x64/lithium-x64.cc (revision 7028) |
+++ src/x64/lithium-x64.cc (working copy) |
@@ -1524,8 +1524,10 @@ |
LInstruction* LChunkBuilder::DoGetCachedArrayIndex( |
HGetCachedArrayIndex* instr) { |
- Abort("Unimplemented: %s", "DoGetCachedArrayIndex"); |
- return NULL; |
+ ASSERT(instr->value()->representation().IsTagged()); |
+ LOperand* value = UseRegisterAtStart(instr->value()); |
+ |
+ return DefineAsRegister(new LGetCachedArrayIndex(value)); |
} |