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 29d19ee809ea874fedefc448085863b9a1f2029f..7b89a6a0ebc068c08386790f14467f6363f1d759 100644 |
--- a/src/crankshaft/mips64/lithium-codegen-mips64.cc |
+++ b/src/crankshaft/mips64/lithium-codegen-mips64.cc |
@@ -2277,8 +2277,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()) { |