Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index a9978e1068cf1e1a91895f53cf0ead23eb473344..535946af2f4fda3e855935eba70e266ddeac4f69 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -1769,6 +1769,14 @@ |
LInstruction* LChunkBuilder::DoMapEnumLength(HMapEnumLength* instr) { |
LOperand* map = UseRegisterAtStart(instr->value()); |
return DefineAsRegister(new(zone()) LMapEnumLength(map)); |
+} |
+ |
+ |
+LInstruction* LChunkBuilder::DoDateField(HDateField* instr) { |
+ LOperand* object = UseFixed(instr->value(), a0); |
+ LDateField* result = |
+ new(zone()) LDateField(object, FixedTemp(a1), instr->index()); |
+ return MarkAsCall(DefineFixed(result, v0), instr, CANNOT_DEOPTIMIZE_EAGERLY); |
} |