summaryrefslogtreecommitdiff
path: root/compiler/optimizing/execution_subgraph.h
diff options
context:
space:
mode:
author Santiago Aboy Solanes <solanes@google.com> 2022-02-18 14:10:25 +0000
committer Santiago Aboy Solanes <solanes@google.com> 2022-02-25 08:18:14 +0000
commit872ec72de447b2803894e17253399a54a4c10e1f (patch)
tree244ca496149b8e1d9d4c786609c91da7f93f8736 /compiler/optimizing/execution_subgraph.h
parent0805e9083aa761094575cd3c4d1eff41bbcf5b74 (diff)
Update compiler/ implications to use (D)CHECK_IMPLIES
Follow-up to aosp/1988868 in which we added the (D)CHECK_IMPLIES macro. This CL uses it on compiler/ occurrences found by a regex. Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b Change-Id: If63aed969bfb8b31d6fbbcb3bca2b04314c894b7
Diffstat (limited to 'compiler/optimizing/execution_subgraph.h')
-rw-r--r--compiler/optimizing/execution_subgraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/execution_subgraph.h b/compiler/optimizing/execution_subgraph.h
index 05855c30d4..7d2a66077d 100644
--- a/compiler/optimizing/execution_subgraph.h
+++ b/compiler/optimizing/execution_subgraph.h
@@ -237,7 +237,7 @@ class ExecutionSubgraph : public DeletableArenaObject<kArenaAllocLSA> {
// Finalization is needed to call this function.
// See RemoveConcavity and Prune for more information.
bool ContainsBlock(const HBasicBlock* blk) const {
- DCHECK(!finalized_ || !needs_prune_) << "finalized: " << finalized_;
+ DCHECK_IMPLIES(finalized_, !needs_prune_);
if (!valid_) {
return false;
}
@@ -267,7 +267,7 @@ class ExecutionSubgraph : public DeletableArenaObject<kArenaAllocLSA> {
}
ArrayRef<const ExcludedCohort> GetExcludedCohorts() const {
- DCHECK(!valid_ || !needs_prune_);
+ DCHECK_IMPLIES(valid_, !needs_prune_);
if (!valid_ || !unreachable_blocks_.IsAnyBitSet()) {
return ArrayRef<const ExcludedCohort>();
} else {