Index: src/compiler/node.cc |
diff --git a/src/compiler/node.cc b/src/compiler/node.cc |
index f38f19595c742785b6d9767e4eda01f91ed0accb..4cb5748b4095cb1377e7164d1c341c38613f6e8c 100644 |
--- a/src/compiler/node.cc |
+++ b/src/compiler/node.cc |
@@ -15,9 +15,9 @@ void Node::CollectProjections(int projection_count, Node** projections) { |
for (UseIter i = uses().begin(); i != uses().end(); ++i) { |
if ((*i)->opcode() != IrOpcode::kProjection) continue; |
int32_t index = OpParameter<int32_t>(*i); |
- ASSERT_GE(index, 0); |
- ASSERT_LT(index, projection_count); |
- ASSERT_EQ(NULL, projections[index]); |
+ DCHECK_GE(index, 0); |
+ DCHECK_LT(index, projection_count); |
+ DCHECK_EQ(NULL, projections[index]); |
projections[index] = *i; |
} |
} |