Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index bc6eb3d1350aa186aa41689559f47ca9b926ed2c..af2dcc24f9cc9cc3dd802fab5815d5aac3f24d87 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1528,6 +1528,12 @@ LInstruction* LChunkBuilder::DoFixedArrayBaseLength( |
} |
+LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { |
+ LOperand* map = UseRegisterAtStart(instr->value()); |
+ return DefineAsRegister(new(zone()) LMapEnumLength(map)); |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoElementsKind(HElementsKind* instr) { |
LOperand* object = UseRegisterAtStart(instr->value()); |
return DefineAsRegister(new(zone()) LElementsKind(object)); |