diff options
author | 2024-01-29 14:45:32 +0000 | |
---|---|---|
committer | 2024-01-29 17:40:44 +0000 | |
commit | 5067a0d46efc7d72f213284bb1c321eebb466979 (patch) | |
tree | e28b5dfcb7df43b99ef1344083577589769a83d3 /compiler/optimizing/optimizing_unit_test.h | |
parent | ddd4776acaa0a4fb0e6027cd063ec450f518c7d7 (diff) |
Optimizing: Remove block reachability information.
This code is dead after Partial LSE removal.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Bug: 298176183
Change-Id: If67efa9d1df908232b6c2f32f3d2c64fb91759ae
Diffstat (limited to 'compiler/optimizing/optimizing_unit_test.h')
-rw-r--r-- | compiler/optimizing/optimizing_unit_test.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/optimizing/optimizing_unit_test.h b/compiler/optimizing/optimizing_unit_test.h index 77e6420df8..8729763e73 100644 --- a/compiler/optimizing/optimizing_unit_test.h +++ b/compiler/optimizing/optimizing_unit_test.h @@ -164,9 +164,7 @@ class AdjacencyListGraph { HBasicBlock* dest_blk = name_to_block_.GetOrCreate(dest, create_block); src_blk->AddSuccessor(dest_blk); } - graph_->ClearReachabilityInformation(); graph_->ComputeDominanceInformation(); - graph_->ComputeReachabilityInformation(); for (auto [name, blk] : name_to_block_) { block_to_name_.Put(blk, name); } |