| Index: src/crankshaft/arm64/lithium-arm64.cc
|
| diff --git a/src/crankshaft/arm64/lithium-arm64.cc b/src/crankshaft/arm64/lithium-arm64.cc
|
| index 3f43338585e47de8900647650597d176133c3c27..ee170a7b839f324e96b80e0554aa61566a813a73 100644
|
| --- a/src/crankshaft/arm64/lithium-arm64.cc
|
| +++ b/src/crankshaft/arm64/lithium-arm64.cc
|
| @@ -1368,6 +1368,13 @@
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoDateField(HDateField* instr) {
|
| + LOperand* object = UseFixed(instr->value(), x0);
|
| + LDateField* result = new(zone()) LDateField(object, instr->index());
|
| + return MarkAsCall(DefineFixed(result, x0), instr, CANNOT_DEOPTIMIZE_EAGERLY);
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoDebugBreak(HDebugBreak* instr) {
|
| return new(zone()) LDebugBreak();
|
| }
|
|
|