Index: src/crankshaft/ppc/lithium-ppc.cc |
diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc |
index 63aead7a3c80a6d9cb812e48ef7797543993fbc5..32931cc00b3208cbf46993a7aafc3b7e315ae1ea 100644 |
--- a/src/crankshaft/ppc/lithium-ppc.cc |
+++ b/src/crankshaft/ppc/lithium-ppc.cc |
@@ -1785,6 +1785,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(), r3); |
+ LDateField* result = |
+ new (zone()) LDateField(object, FixedTemp(r4), instr->index()); |
+ return MarkAsCall(DefineFixed(result, r3), instr, CANNOT_DEOPTIMIZE_EAGERLY); |
} |