Index: src/compiler/node-matchers.h |
diff --git a/src/compiler/node-matchers.h b/src/compiler/node-matchers.h |
index faf7f4e34ab24f98e70b874a63b83e94304bc13d..3b34d07c08f921d112d8bf378b495ecd8ce9a027 100644 |
--- a/src/compiler/node-matchers.h |
+++ b/src/compiler/node-matchers.h |
@@ -46,7 +46,7 @@ struct ValueMatcher : public NodeMatcher { |
bool HasValue() const { return has_value_; } |
T Value() const { |
- ASSERT(HasValue()); |
+ DCHECK(HasValue()); |
return value_; |
} |