| Index: src/crankshaft/ia32/lithium-codegen-ia32.cc
|
| diff --git a/src/crankshaft/ia32/lithium-codegen-ia32.cc b/src/crankshaft/ia32/lithium-codegen-ia32.cc
|
| index 1d57b706557f17f0ea803859451b65b8fa19f8a5..de20520eda18ea8d7b77d0ce42b10aedda5811ae 100644
|
| --- a/src/crankshaft/ia32/lithium-codegen-ia32.cc
|
| +++ b/src/crankshaft/ia32/lithium-codegen-ia32.cc
|
| @@ -1909,8 +1909,7 @@ void LCodeGen::DoArithmeticT(LArithmeticT* instr) {
|
| DCHECK(ToRegister(instr->right()).is(eax));
|
| DCHECK(ToRegister(instr->result()).is(eax));
|
|
|
| - 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);
|
| }
|
|
|
| @@ -2475,8 +2474,7 @@ void LCodeGen::DoHasInPrototypeChainAndBranch(
|
| void LCodeGen::DoCmpT(LCmpT* instr) {
|
| 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);
|
|
|
| Condition condition = ComputeCompareCondition(op);
|
|
|