From 5067a0d46efc7d72f213284bb1c321eebb466979 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Mon, 29 Jan 2024 14:45:32 +0000 Subject: 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 --- compiler/optimizing/optimizing_unit_test.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'compiler/optimizing/optimizing_unit_test.h') 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); } -- cgit v1.2.3-59-g8ed1b