diff options
author | 2022-02-18 14:10:25 +0000 | |
---|---|---|
committer | 2022-02-25 08:18:14 +0000 | |
commit | 872ec72de447b2803894e17253399a54a4c10e1f (patch) | |
tree | 244ca496149b8e1d9d4c786609c91da7f93f8736 /compiler/optimizing/bounds_check_elimination.cc | |
parent | 0805e9083aa761094575cd3c4d1eff41bbcf5b74 (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/bounds_check_elimination.cc')
-rw-r--r-- | compiler/optimizing/bounds_check_elimination.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/bounds_check_elimination.cc b/compiler/optimizing/bounds_check_elimination.cc index a8149f9163..2d02e9f427 100644 --- a/compiler/optimizing/bounds_check_elimination.cc +++ b/compiler/optimizing/bounds_check_elimination.cc @@ -595,7 +595,7 @@ class BCEVisitor : public HGraphVisitor { // Helper method to assign a new range to an instruction in given basic block. void AssignRange(HBasicBlock* basic_block, HInstruction* instruction, ValueRange* range) { - DCHECK(!range->IsMonotonicValueRange() || instruction->IsLoopHeaderPhi()); + DCHECK_IMPLIES(range->IsMonotonicValueRange(), instruction->IsLoopHeaderPhi()); GetValueRangeMap(basic_block)->Overwrite(instruction->GetId(), range); } |