| Index: src/crankshaft/x64/lithium-codegen-x64.cc
 | 
| diff --git a/src/crankshaft/x64/lithium-codegen-x64.cc b/src/crankshaft/x64/lithium-codegen-x64.cc
 | 
| index 68805dd081897b6e4a26788f6f0dd4cbd52204b6..301922d9b5d4ab2006166bc1c7cf94cda1546236 100644
 | 
| --- a/src/crankshaft/x64/lithium-codegen-x64.cc
 | 
| +++ b/src/crankshaft/x64/lithium-codegen-x64.cc
 | 
| @@ -2437,16 +2437,6 @@ void LCodeGen::DoCmpMapAndBranch(LCmpMapAndBranch* instr) {
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void LCodeGen::DoInstanceOf(LInstanceOf* instr) {
 | 
| -  DCHECK(ToRegister(instr->context()).is(rsi));
 | 
| -  DCHECK(ToRegister(instr->left()).is(InstanceOfDescriptor::LeftRegister()));
 | 
| -  DCHECK(ToRegister(instr->right()).is(InstanceOfDescriptor::RightRegister()));
 | 
| -  DCHECK(ToRegister(instr->result()).is(rax));
 | 
| -  InstanceOfStub stub(isolate());
 | 
| -  CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  void LCodeGen::DoHasInPrototypeChainAndBranch(
 | 
|      LHasInPrototypeChainAndBranch* instr) {
 | 
|    Register const object = ToRegister(instr->object());
 | 
| 
 |