| Index: src/crankshaft/x87/lithium-x87.cc
 | 
| diff --git a/src/crankshaft/x87/lithium-x87.cc b/src/crankshaft/x87/lithium-x87.cc
 | 
| index a195cc3ae7292dbe7c40656c954e7a4a5a2eefdb..642f68b1833b17cde7e1f39ae075074037a1385e 100644
 | 
| --- a/src/crankshaft/x87/lithium-x87.cc
 | 
| +++ b/src/crankshaft/x87/lithium-x87.cc
 | 
| @@ -235,14 +235,6 @@ void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) {
 | 
|    stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
 | 
|  }
 | 
|  
 | 
| -
 | 
| -void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) {
 | 
| -  stream->Add("if has_cached_array_index(");
 | 
| -  value()->PrintTo(stream);
 | 
| -  stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LClassOfTestAndBranch::PrintDataTo(StringStream* stream) {
 | 
|    stream->Add("if class_of_test(");
 | 
|    value()->PrintTo(stream);
 | 
| @@ -1703,24 +1695,6 @@ LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch(
 | 
|        TempRegister());
 | 
|  }
 | 
|  
 | 
| -
 | 
| -LInstruction* LChunkBuilder::DoGetCachedArrayIndex(
 | 
| -    HGetCachedArrayIndex* instr)  {
 | 
| -  DCHECK(instr->value()->representation().IsTagged());
 | 
| -  LOperand* value = UseRegisterAtStart(instr->value());
 | 
| -
 | 
| -  return DefineAsRegister(new(zone()) LGetCachedArrayIndex(value));
 | 
| -}
 | 
| -
 | 
| -
 | 
| -LInstruction* LChunkBuilder::DoHasCachedArrayIndexAndBranch(
 | 
| -    HHasCachedArrayIndexAndBranch* instr) {
 | 
| -  DCHECK(instr->value()->representation().IsTagged());
 | 
| -  return new(zone()) LHasCachedArrayIndexAndBranch(
 | 
| -      UseRegisterAtStart(instr->value()));
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoClassOfTestAndBranch(
 | 
|      HClassOfTestAndBranch* instr) {
 | 
|    DCHECK(instr->value()->representation().IsTagged());
 | 
| 
 |