| Index: src/arm/lithium-arm.cc
 | 
| ===================================================================
 | 
| --- src/arm/lithium-arm.cc	(revision 7281)
 | 
| +++ src/arm/lithium-arm.cc	(working copy)
 | 
| @@ -1996,6 +1996,13 @@
 | 
|  }
 | 
|  
 | 
|  
 | 
| +LInstruction* LChunkBuilder::DoToFastProperties(HToFastProperties* instr) {
 | 
| +  LOperand* object = UseFixed(instr->value(), r0);
 | 
| +  LToFastProperties* result = new LToFastProperties(object);
 | 
| +  return MarkAsCall(DefineFixed(result, r0), instr);
 | 
| +}
 | 
| +
 | 
| +
 | 
|  LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) {
 | 
|    LTypeof* result = new LTypeof(UseFixed(instr->value(), r0));
 | 
|    return MarkAsCall(DefineFixed(result, r0), instr);
 | 
| 
 |