diff options
author | 2015-09-03 13:33:25 +0000 | |
---|---|---|
committer | 2015-09-03 13:33:25 +0000 | |
commit | 145acc5361deb769eed998f057bc23abaef6e116 (patch) | |
tree | 3d66a0b44e1ac927156eec6e6488de5fd52b982b /compiler/optimizing/suspend_check_test.cc | |
parent | 91e11c0c840193c6822e66846020b6647de243d5 (diff) |
Revert "Optimizing: Tag basic block allocations with their source."
Reverting so that we can have more discussion about the STL API.
This reverts commit 91e11c0c840193c6822e66846020b6647de243d5.
Change-Id: I187fe52f2c16b6e7c5c9d49c42921eb6c7063dba
Diffstat (limited to 'compiler/optimizing/suspend_check_test.cc')
-rw-r--r-- | compiler/optimizing/suspend_check_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/suspend_check_test.cc b/compiler/optimizing/suspend_check_test.cc index e745d94b89..5ca66a1de6 100644 --- a/compiler/optimizing/suspend_check_test.cc +++ b/compiler/optimizing/suspend_check_test.cc @@ -36,7 +36,7 @@ static void TestCode(const uint16_t* data) { bool graph_built = builder.BuildGraph(*item); ASSERT_TRUE(graph_built); - HBasicBlock* first_block = graph->GetEntryBlock()->GetSuccessor(0); + HBasicBlock* first_block = graph->GetEntryBlock()->GetSuccessors().Get(0); HInstruction* first_instruction = first_block->GetFirstInstruction(); // Account for some tests having a store local as first instruction. ASSERT_TRUE(first_instruction->IsSuspendCheck() |