Revision: 24627
Author:   [email protected]
Date:     Wed Oct 15 11:56:05 2014 UTC
Log:      Fix oversight in type change

[email protected]
BUG=

Review URL: https://codereview.chromium.org/646033005
https://code.google.com/p/v8/source/detail?r=24627

Modified:
 /branches/bleeding_edge/src/compiler/verifier.cc

=======================================
--- /branches/bleeding_edge/src/compiler/verifier.cc Wed Oct 15 11:38:04 2014 UTC +++ /branches/bleeding_edge/src/compiler/verifier.cc Wed Oct 15 11:56:05 2014 UTC
@@ -166,7 +166,7 @@
       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);

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to