| Index: src/compiler/verifier.cc
|
| diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
|
| index ba9e0f53698c122c32853b42e468b33ae30312bc..09b78ae1acd0fc409d4370e604a3937e48eb2222 100644
|
| --- a/src/compiler/verifier.cc
|
| +++ b/src/compiler/verifier.cc
|
| @@ -166,7 +166,7 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) {
|
| case IrOpcode::kBranch: {
|
| // Branch uses are IfTrue and IfFalse.
|
| Node::Uses uses = node->uses();
|
| - bool count_true = 0, count_false = 0;
|
| + int count_true = 0, count_false = 0;
|
| for (Node::Uses::iterator it = uses.begin(); it != uses.end(); ++it) {
|
| CHECK((*it)->opcode() == IrOpcode::kIfTrue ||
|
| (*it)->opcode() == IrOpcode::kIfFalse);
|
|
|