| Index: src/crankshaft/ppc/lithium-ppc.cc
 | 
| diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| index e1e87dba009899499120b32e6e25af7996561d55..3aa7cba8ee5c57fd12367229d477b2e19a92e20c 100644
 | 
| --- a/src/crankshaft/ppc/lithium-ppc.cc
 | 
| +++ b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| @@ -349,15 +349,6 @@ void LStoreKeyed::PrintDataTo(StringStream* stream) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LStoreKeyedGeneric::PrintDataTo(StringStream* stream) {
 | 
| -  object()->PrintTo(stream);
 | 
| -  stream->Add("[");
 | 
| -  key()->PrintTo(stream);
 | 
| -  stream->Add("] <- ");
 | 
| -  value()->PrintTo(stream);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LTransitionElementsKind::PrintDataTo(StringStream* stream) {
 | 
|    object()->PrintTo(stream);
 | 
|    stream->Add(" %p -> %p", *original_map(), *transitioned_map());
 | 
| @@ -2141,26 +2132,6 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), cp);
 | 
| -  LOperand* obj =
 | 
| -      UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
 | 
| -  LOperand* key = UseFixed(instr->key(), StoreDescriptor::NameRegister());
 | 
| -  LOperand* val = UseFixed(instr->value(), StoreDescriptor::ValueRegister());
 | 
| -
 | 
| -  DCHECK(instr->object()->representation().IsTagged());
 | 
| -  DCHECK(instr->key()->representation().IsTagged());
 | 
| -  DCHECK(instr->value()->representation().IsTagged());
 | 
| -
 | 
| -  LOperand* slot = FixedTemp(StoreWithVectorDescriptor::SlotRegister());
 | 
| -  LOperand* vector = FixedTemp(StoreWithVectorDescriptor::VectorRegister());
 | 
| -
 | 
| -  LStoreKeyedGeneric* result =
 | 
| -      new (zone()) LStoreKeyedGeneric(context, obj, key, val, slot, vector);
 | 
| -  return MarkAsCall(result, instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoTransitionElementsKind(
 | 
|      HTransitionElementsKind* instr) {
 | 
|    if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) {
 | 
| 
 |