| Index: src/crankshaft/ppc/lithium-ppc.cc
 | 
| diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| index 2a04d9926c1b0677dd807cd891b5c4c981b80644..a535f6cd1ec9f62d940e1421988d3aba87aa6806 100644
 | 
| --- a/src/crankshaft/ppc/lithium-ppc.cc
 | 
| +++ b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| @@ -261,20 +261,6 @@ void LInnerAllocatedObject::PrintDataTo(StringStream* stream) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LCallFunction::PrintDataTo(StringStream* stream) {
 | 
| -  context()->PrintTo(stream);
 | 
| -  stream->Add(" ");
 | 
| -  function()->PrintTo(stream);
 | 
| -  if (hydrogen()->HasVectorAndSlot()) {
 | 
| -    stream->Add(" (type-feedback-vector ");
 | 
| -    temp_vector()->PrintTo(stream);
 | 
| -    stream->Add(" ");
 | 
| -    temp_slot()->PrintTo(stream);
 | 
| -    stream->Add(")");
 | 
| -  }
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LCallJSFunction::PrintDataTo(StringStream* stream) {
 | 
|    stream->Add("= ");
 | 
|    function()->PrintTo(stream);
 | 
| @@ -1225,22 +1211,6 @@ LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), cp);
 | 
| -  LOperand* function = UseFixed(instr->function(), r4);
 | 
| -  LOperand* slot = NULL;
 | 
| -  LOperand* vector = NULL;
 | 
| -  if (instr->HasVectorAndSlot()) {
 | 
| -    slot = FixedTemp(r6);
 | 
| -    vector = FixedTemp(r5);
 | 
| -  }
 | 
| -
 | 
| -  LCallFunction* call =
 | 
| -      new (zone()) LCallFunction(context, function, slot, vector);
 | 
| -  return MarkAsCall(DefineFixed(call, r3), instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) {
 | 
|    LOperand* context = UseFixed(instr->context(), cp);
 | 
|    return MarkAsCall(DefineFixed(new (zone()) LCallRuntime(context), r3), instr);
 | 
| 
 |