summaryrefslogtreecommitdiff
path: root/compiler/optimizing/scheduler_test.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2020-11-12 14:12:52 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2020-11-12 16:33:50 +0000
commitfe270426c8a2a69a8f669339e83b86fbf40e25a1 (patch)
treec048fdec8e37cefb7238218a087709c01d5d3923 /compiler/optimizing/scheduler_test.cc
parente17530a19a717879c8dd8e70073de6aaf4ee455f (diff)
Revert "Partial LSE analysis & store removal"
This reverts commit bb6cda60e4418c0ab557ea4090e046bed8206763. Bug: 67037140 Reason for revert: memory leak detected in the test. Change-Id: I81cc2f61494e96964d8be40389eddcd7c66c9266
Diffstat (limited to 'compiler/optimizing/scheduler_test.cc')
-rw-r--r--compiler/optimizing/scheduler_test.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/scheduler_test.cc b/compiler/optimizing/scheduler_test.cc
index c166a46082..94f1599e62 100644
--- a/compiler/optimizing/scheduler_test.cc
+++ b/compiler/optimizing/scheduler_test.cc
@@ -273,8 +273,7 @@ class SchedulerTest : public OptimizingUnitTest {
entry->AddInstruction(instr);
}
- HeapLocationCollector heap_location_collector(
- graph_, GetScopedAllocator(), /*for_partial_elimination=*/false);
+ HeapLocationCollector heap_location_collector(graph_, GetScopedAllocator());
heap_location_collector.VisitBasicBlock(entry);
heap_location_collector.BuildAliasingMatrix();
TestSchedulingGraph scheduling_graph(GetScopedAllocator(), &heap_location_collector);