| Index: src/compiler/arm/code-generator-arm.cc
|
| diff --git a/src/compiler/arm/code-generator-arm.cc b/src/compiler/arm/code-generator-arm.cc
|
| index 51ac2070c8f81de33fadaf5e2965c93439475235..894584b8d39b9ffbeb4c454b5863b58518664800 100644
|
| --- a/src/compiler/arm/code-generator-arm.cc
|
| +++ b/src/compiler/arm/code-generator-arm.cc
|
| @@ -745,7 +745,7 @@ void CodeGenerator::AssembleArchBoolean(Instruction* instr,
|
|
|
| // Materialize a full 32-bit 1 or 0 value. The result register is always the
|
| // last output of the instruction.
|
| - DCHECK_NE(0, instr->OutputCount());
|
| + DCHECK_NE(0u, instr->OutputCount());
|
| Register reg = i.OutputRegister(instr->OutputCount() - 1);
|
| Condition cc = FlagsConditionToCondition(condition);
|
| __ mov(reg, Operand(0));
|
|
|