Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index 3419ad0b44aedef6069968af0481ad24fc08ce34..b5d8fa85dc7f793e5250cb25146412e4fbb59bc4 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -2271,7 +2271,7 @@ void LCodeGen::DoCompareNumericAndBranch(LCompareNumericAndBranch* instr) { |
LOperand* left = instr->left(); |
LOperand* right = instr->right(); |
bool is_unsigned = instr->hydrogen()->CheckFlag(HInstruction::kUint32); |
- Condition cc = TokenToCondition(instr->op(), is_unsigned); |
+ Condition cond = TokenToCondition(instr->op(), is_unsigned); |
if (left->IsConstantOperand() && right->IsConstantOperand()) { |
// We can statically evaluate the comparison. |