Commit b1d9bbce authored by Georg Neis's avatar Georg Neis Committed by Commit Bot

[compiler] Turn a DCHECK into a CHECK in ValueMatcher::ResolvedValue

Bug: chromium:1147206
Change-Id: I53bc7fc6326c6656c154f1bdebf0ddebc178e146
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2527093
Commit-Queue: Georg Neis <neis@chromium.org>
Commit-Queue: Andreas Haas <ahaas@chromium.org>
Auto-Submit: Georg Neis <neis@chromium.org>
Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71073}
parent a2d2ab46
......@@ -88,7 +88,7 @@ struct ValueMatcher : public NodeMatcher {
bool HasResolvedValue() const { return has_resolved_value_; }
const T& ResolvedValue() const {
DCHECK(HasResolvedValue());
CHECK(HasResolvedValue());
return resolved_value_;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment