| Index: src/crankshaft/ia32/lithium-ia32.cc
 | 
| diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc
 | 
| index f7aa899200503f3a4bf640ceef40043d53514519..a9f219c8b8f1c4c1c46c2cd9991a1537119331aa 100644
 | 
| --- a/src/crankshaft/ia32/lithium-ia32.cc
 | 
| +++ b/src/crankshaft/ia32/lithium-ia32.cc
 | 
| @@ -383,15 +383,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());
 | 
| @@ -2202,26 +2193,6 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), esi);
 | 
| -  LOperand* object =
 | 
| -      UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
 | 
| -  LOperand* key = UseFixed(instr->key(), StoreDescriptor::NameRegister());
 | 
| -  LOperand* value = 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, object, key, value, slot, vector);
 | 
| -  return MarkAsCall(result, instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoTransitionElementsKind(
 | 
|      HTransitionElementsKind* instr) {
 | 
|    if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) {
 | 
| 
 |