| Index: src/full-codegen/arm/full-codegen-arm.cc
 | 
| diff --git a/src/full-codegen/arm/full-codegen-arm.cc b/src/full-codegen/arm/full-codegen-arm.cc
 | 
| index 4686bcb20c808a4ac6b72042140b162f0847c53b..131f0da758b27d87dd6fc22a31ee841e06cc2c8d 100644
 | 
| --- a/src/full-codegen/arm/full-codegen-arm.cc
 | 
| +++ b/src/full-codegen/arm/full-codegen-arm.cc
 | 
| @@ -3275,34 +3275,6 @@ void FullCodeGenerator::EmitIsJSProxy(CallRuntime* expr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void FullCodeGenerator::EmitIsConstructCall(CallRuntime* expr) {
 | 
| -  DCHECK(expr->arguments()->length() == 0);
 | 
| -
 | 
| -  Label materialize_true, materialize_false;
 | 
| -  Label* if_true = NULL;
 | 
| -  Label* if_false = NULL;
 | 
| -  Label* fall_through = NULL;
 | 
| -  context()->PrepareTest(&materialize_true, &materialize_false,
 | 
| -                         &if_true, &if_false, &fall_through);
 | 
| -
 | 
| -  // Get the frame pointer for the calling frame.
 | 
| -  __ ldr(r2, MemOperand(fp, StandardFrameConstants::kCallerFPOffset));
 | 
| -
 | 
| -  // Skip the arguments adaptor frame if it exists.
 | 
| -  __ ldr(r1, MemOperand(r2, StandardFrameConstants::kContextOffset));
 | 
| -  __ cmp(r1, Operand(Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR)));
 | 
| -  __ ldr(r2, MemOperand(r2, StandardFrameConstants::kCallerFPOffset), eq);
 | 
| -
 | 
| -  // Check the marker in the calling frame.
 | 
| -  __ ldr(r1, MemOperand(r2, StandardFrameConstants::kMarkerOffset));
 | 
| -  __ cmp(r1, Operand(Smi::FromInt(StackFrame::CONSTRUCT)));
 | 
| -  PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
 | 
| -  Split(eq, if_true, if_false, fall_through);
 | 
| -
 | 
| -  context()->Plug(if_true, if_false);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void FullCodeGenerator::EmitObjectEquals(CallRuntime* expr) {
 | 
|    ZoneList<Expression*>* args = expr->arguments();
 | 
|    DCHECK(args->length() == 2);
 | 
| 
 |