| Index: src/crankshaft/ppc/lithium-ppc.cc
 | 
| diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| index ca7381d340cf1daddefed38cac9711e7d67f8655..2d37fead502a9777cea87bb814c5d85aca95dfe2 100644
 | 
| --- a/src/crankshaft/ppc/lithium-ppc.cc
 | 
| +++ b/src/crankshaft/ppc/lithium-ppc.cc
 | 
| @@ -336,11 +336,6 @@ void LAccessArgumentsAt::PrintDataTo(StringStream* stream) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -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;
 | 
| @@ -359,12 +354,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("[");
 | 
| @@ -2101,15 +2090,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoLoadGlobalViaContext(
 | 
| -    HLoadGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), cp);
 | 
| -  DCHECK(instr->slot_index() > 0);
 | 
| -  LLoadGlobalViaContext* result = new (zone()) LLoadGlobalViaContext(context);
 | 
| -  return MarkAsCall(DefineFixed(result, r3), instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
 | 
|    LOperand* context = UseRegisterAtStart(instr->value());
 | 
|    LInstruction* result =
 | 
| @@ -2386,19 +2366,6 @@ LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -LInstruction* LChunkBuilder::DoStoreGlobalViaContext(
 | 
| -    HStoreGlobalViaContext* instr) {
 | 
| -  LOperand* context = UseFixed(instr->context(), cp);
 | 
| -  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(), cp);
 | 
|    LOperand* left = UseFixed(instr->left(), r4);
 | 
| 
 |