| Index: src/crankshaft/arm/lithium-arm.cc
 | 
| diff --git a/src/crankshaft/arm/lithium-arm.cc b/src/crankshaft/arm/lithium-arm.cc
 | 
| index 890afcda3dc301e9b063028d42d23fb8023ebcd4..a05194f86db7c6219df534432ecf4bb30f799bb0 100644
 | 
| --- a/src/crankshaft/arm/lithium-arm.cc
 | 
| +++ b/src/crankshaft/arm/lithium-arm.cc
 | 
| @@ -248,13 +248,6 @@ void LInnerAllocatedObject::PrintDataTo(StringStream* stream) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LCallJSFunction::PrintDataTo(StringStream* stream) {
 | 
| -  stream->Add("= ");
 | 
| -  function()->PrintTo(stream);
 | 
| -  stream->Add("#%d / ", arity());
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LCallWithDescriptor::PrintDataTo(StringStream* stream) {
 | 
|    for (int i = 0; i < InputCount(); i++) {
 | 
|      InputAt(i)->PrintTo(stream);
 | 
| @@ -1045,16 +1038,6 @@ LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoCallJSFunction(
 | 
| -    HCallJSFunction* instr) {
 | 
| -  LOperand* function = UseFixed(instr->function(), r1);
 | 
| -
 | 
| -  LCallJSFunction* result = new(zone()) LCallJSFunction(function);
 | 
| -
 | 
| -  return MarkAsCall(DefineFixed(result, r0), instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoCallWithDescriptor(
 | 
|      HCallWithDescriptor* instr) {
 | 
|    CallInterfaceDescriptor descriptor = instr->descriptor();
 | 
| 
 |