| Index: src/crankshaft/mips64/lithium-codegen-mips64.cc | 
| diff --git a/src/crankshaft/mips64/lithium-codegen-mips64.cc b/src/crankshaft/mips64/lithium-codegen-mips64.cc | 
| index ba3b62d649c78bd1887672152feb0c68a28e713c..cd0f071340dea52e2cb1920cd74be594ed706971 100644 | 
| --- a/src/crankshaft/mips64/lithium-codegen-mips64.cc | 
| +++ b/src/crankshaft/mips64/lithium-codegen-mips64.cc | 
| @@ -1985,8 +1985,7 @@ void LCodeGen::DoArithmeticT(LArithmeticT* instr) { | 
| DCHECK(ToRegister(instr->right()).is(a0)); | 
| DCHECK(ToRegister(instr->result()).is(v0)); | 
|  | 
| -  Handle<Code> code = | 
| -      CodeFactory::BinaryOpIC(isolate(), instr->op(), instr->strength()).code(); | 
| +  Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), instr->op()).code(); | 
| CallCode(code, RelocInfo::CODE_TARGET, instr); | 
| // Other arch use a nop here, to signal that there is no inlined | 
| // patchable code. Mips does not need the nop, since our marker | 
| @@ -2617,8 +2616,7 @@ void LCodeGen::DoCmpT(LCmpT* instr) { | 
| DCHECK(ToRegister(instr->context()).is(cp)); | 
| Token::Value op = instr->op(); | 
|  | 
| -  Handle<Code> ic = | 
| -      CodeFactory::CompareIC(isolate(), op, instr->strength()).code(); | 
| +  Handle<Code> ic = CodeFactory::CompareIC(isolate(), op).code(); | 
| CallCode(ic, RelocInfo::CODE_TARGET, instr); | 
| // On MIPS there is no need for a "no inlined smi code" marker (nop). | 
|  | 
|  |