Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 7f4490f6defa9e573d34420af985827f30403748..5ea72ae8ad1adde5630d5a63afeb31cac64200fb 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1502,16 +1502,10 @@ LInstruction* LChunkBuilder::DoJSArrayLength(HJSArrayLength* instr) { |
} |
-LInstruction* LChunkBuilder::DoFixedArrayLength(HFixedArrayLength* instr) { |
+LInstruction* LChunkBuilder::DoFixedArrayBaseLength( |
+ HFixedArrayBaseLength* instr) { |
LOperand* array = UseRegisterAtStart(instr->value()); |
- return DefineAsRegister(new LFixedArrayLength(array)); |
-} |
- |
- |
-LInstruction* LChunkBuilder::DoExternalArrayLength( |
- HExternalArrayLength* instr) { |
- LOperand* array = UseRegisterAtStart(instr->value()); |
- return DefineAsRegister(new LExternalArrayLength(array)); |
+ return DefineAsRegister(new LFixedArrayBaseLength(array)); |
} |