Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index af2dcc24f9cc9cc3dd802fab5815d5aac3f24d87..bee18544484e6f2c0b585d4d263291cef9098136 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1550,7 +1550,7 @@ LInstruction* LChunkBuilder::DoValueOf(HValueOf* instr) { |
LInstruction* LChunkBuilder::DoDateField(HDateField* instr) { |
LOperand* object = UseFixed(instr->value(), rax); |
LDateField* result = new(zone()) LDateField(object, instr->index()); |
- return MarkAsCall(DefineFixed(result, rax), instr); |
+ return MarkAsCall(DefineFixed(result, rax), instr, CAN_DEOPTIMIZE_EAGERLY); |
} |