Index: src/compiler/graph.cc |
diff --git a/src/compiler/graph.cc b/src/compiler/graph.cc |
index 42f632ff7e599cdb31f43da46bd9fe5dd488de70..f49ce3411343773b64e5bac519dd507cb5b9746e 100644 |
--- a/src/compiler/graph.cc |
+++ b/src/compiler/graph.cc |
@@ -22,7 +22,7 @@ Graph::Graph(Zone* zone) : GenericGraph<Node>(zone), decorators_(zone) {} |
Node* Graph::NewNode(Operator* op, int input_count, Node** inputs) { |
- DCHECK(op->InputCount() <= input_count); |
+ DCHECK_LE(op->InputCount(), input_count); |
Node* result = Node::New(this, input_count, inputs); |
result->Initialize(op); |
for (ZoneVector<GraphDecorator*>::iterator i = decorators_.begin(); |