| Index: src/arm/lithium-arm.h | 
| =================================================================== | 
| --- src/arm/lithium-arm.h	(revision 7281) | 
| +++ src/arm/lithium-arm.h	(working copy) | 
| @@ -155,6 +155,7 @@ | 
| V(SubI)                                       \ | 
| V(TaggedToI)                                  \ | 
| V(Throw)                                      \ | 
| +  V(ToFastProperties)                           \ | 
| V(Typeof)                                     \ | 
| V(TypeofIs)                                   \ | 
| V(TypeofIsAndBranch)                          \ | 
| @@ -1767,6 +1768,17 @@ | 
| }; | 
|  | 
|  | 
| +class LToFastProperties: public LTemplateInstruction<1, 1, 0> { | 
| + public: | 
| +  explicit LToFastProperties(LOperand* value) { | 
| +    inputs_[0] = value; | 
| +  } | 
| + | 
| +  DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties") | 
| +  DECLARE_HYDROGEN_ACCESSOR(ToFastProperties) | 
| +}; | 
| + | 
| + | 
| class LTypeof: public LTemplateInstruction<1, 1, 0> { | 
| public: | 
| explicit LTypeof(LOperand* value) { | 
|  |