| Index: src/crankshaft/ia32/lithium-ia32.cc
 | 
| diff --git a/src/crankshaft/ia32/lithium-ia32.cc b/src/crankshaft/ia32/lithium-ia32.cc
 | 
| index ba30f030e58658bbc1cab6c7e42a39526e0b91af..ba3bb718caadd286cdd5dc8268a5e3a0ad305569 100644
 | 
| --- a/src/crankshaft/ia32/lithium-ia32.cc
 | 
| +++ b/src/crankshaft/ia32/lithium-ia32.cc
 | 
| @@ -372,11 +372,6 @@ LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LLoadGlobalViaContext::PrintDataTo(StringStream* stream) {
 | 
| -  stream->Add("depth:%d slot:%d", depth(), slot_index());
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LStoreNamedField::PrintDataTo(StringStream* stream) {
 | 
|    object()->PrintTo(stream);
 | 
|    std::ostringstream os;
 | 
| @@ -395,12 +390,6 @@ void LStoreNamedGeneric::PrintDataTo(StringStream* stream) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LStoreGlobalViaContext::PrintDataTo(StringStream* stream) {
 | 
| -  stream->Add("depth:%d slot:%d <- ", depth(), slot_index());
 | 
| -  value()->PrintTo(stream);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LLoadKeyed::PrintDataTo(StringStream* stream) {
 | 
|    elements()->PrintTo(stream);
 | 
|    stream->Add("[");
 | 
| @@ -2136,15 +2125,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoLoadGlobalViaContext(
 | 
| -    HLoadGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), esi);
 | 
| -  DCHECK(instr->slot_index() > 0);
 | 
| -  LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context);
 | 
| -  return MarkAsCall(DefineFixed(result, eax), instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
 | 
|    LOperand* context = UseRegisterAtStart(instr->value());
 | 
|    LInstruction* result =
 | 
| @@ -2477,19 +2457,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoStoreGlobalViaContext(
 | 
| -    HStoreGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), esi);
 | 
| -  LOperand* value = UseFixed(instr->value(),
 | 
| -                             StoreGlobalViaContextDescriptor::ValueRegister());
 | 
| -  DCHECK(instr->slot_index() > 0);
 | 
| -
 | 
| -  LStoreGlobalViaContext* result =
 | 
| -      new (zone()) LStoreGlobalViaContext(context, value);
 | 
| -  return MarkAsCall(result, instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoStringAdd(HStringAdd* instr) {
 | 
|    LOperand* context = UseFixed(instr->context(), esi);
 | 
|    LOperand* left = UseFixed(instr->left(), edx);
 | 
| 
 |