| Index: src/crankshaft/mips/lithium-codegen-mips.cc
|
| diff --git a/src/crankshaft/mips/lithium-codegen-mips.cc b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| index 2414f0d61cb5da1e7fda32dc1244930341738c88..a5ff92eab65199a87770395a16791b49e68eb268 100644
|
| --- a/src/crankshaft/mips/lithium-codegen-mips.cc
|
| +++ b/src/crankshaft/mips/lithium-codegen-mips.cc
|
| @@ -2159,8 +2159,9 @@ void LCodeGen::DoCompareNumericAndBranch(LCompareNumericAndBranch* instr) {
|
| // We can statically evaluate the comparison.
|
| double left_val = ToDouble(LConstantOperand::cast(left));
|
| double right_val = ToDouble(LConstantOperand::cast(right));
|
| - int next_block = EvalComparison(instr->op(), left_val, right_val) ?
|
| - instr->TrueDestination(chunk_) : instr->FalseDestination(chunk_);
|
| + int next_block = Token::EvalComparison(instr->op(), left_val, right_val)
|
| + ? instr->TrueDestination(chunk_)
|
| + : instr->FalseDestination(chunk_);
|
| EmitGoto(next_block);
|
| } else {
|
| if (instr->is_double()) {
|
|
|