diff options
author | Vladimir Marko <vmarko@google.com> | 2015-09-03 13:33:49 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-09-03 13:33:49 +0000 |
commit | 2e8e4ff1b7d78a236c238651dbc0b58f33966c0a (patch) | |
tree | 7b83b227bbaa36465f313542bba9206ac631a8fd /compiler/optimizing/code_generator.cc | |
parent | f7432c60a1d6385ff3dea9b44305007b2bcc1ed1 (diff) | |
parent | 145acc5361deb769eed998f057bc23abaef6e116 (diff) |
Merge "Revert "Optimizing: Tag basic block allocations with their source.""
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index f5c4498849..a6fc4557f7 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -171,7 +171,7 @@ HBasicBlock* CodeGenerator::GetNextBlockToEmit() const { HBasicBlock* CodeGenerator::FirstNonEmptyBlock(HBasicBlock* block) const { while (block->IsSingleJump()) { - block = block->GetSuccessor(0); + block = block->GetSuccessors().Get(0); } return block; } |