| Index: src/crankshaft/arm/lithium-arm.h
 | 
| diff --git a/src/crankshaft/arm/lithium-arm.h b/src/crankshaft/arm/lithium-arm.h
 | 
| index 6329f36fb2e10ce332be1413d00bf2f923723a0f..e63330fabaccc61caa42f85d75fc4bc53d6d0e89 100644
 | 
| --- a/src/crankshaft/arm/lithium-arm.h
 | 
| +++ b/src/crankshaft/arm/lithium-arm.h
 | 
| @@ -60,6 +60,7 @@
 | 
|    V(ConstantT)                               \
 | 
|    V(ConstructDouble)                         \
 | 
|    V(Context)                                 \
 | 
| +  V(DateField)                               \
 | 
|    V(DebugBreak)                              \
 | 
|    V(DeclareGlobals)                          \
 | 
|    V(Deoptimize)                              \
 | 
| @@ -1373,6 +1374,25 @@
 | 
|  };
 | 
|  
 | 
|  
 | 
| +class LDateField final : public LTemplateInstruction<1, 1, 1> {
 | 
| + public:
 | 
| +  LDateField(LOperand* date, LOperand* temp, Smi* index) : index_(index) {
 | 
| +    inputs_[0] = date;
 | 
| +    temps_[0] = temp;
 | 
| +  }
 | 
| +
 | 
| +  LOperand* date() { return inputs_[0]; }
 | 
| +  LOperand* temp() { return temps_[0]; }
 | 
| +  Smi* index() const { return index_; }
 | 
| +
 | 
| +  DECLARE_CONCRETE_INSTRUCTION(DateField, "date-field")
 | 
| +  DECLARE_HYDROGEN_ACCESSOR(DateField)
 | 
| +
 | 
| + private:
 | 
| +  Smi* index_;
 | 
| +};
 | 
| +
 | 
| +
 | 
|  class LSeqStringGetChar final : public LTemplateInstruction<1, 2, 0> {
 | 
|   public:
 | 
|    LSeqStringGetChar(LOperand* string, LOperand* index) {
 | 
| 
 |