diff options
| author | 2013-02-06 17:43:42 -0800 | |
|---|---|---|
| committer | 2013-02-06 17:43:42 -0800 | |
| commit | 34b8c98d7383b9c0d7d094bfbc5fc0272902dd64 (patch) | |
| tree | 19f94d02d366a06c306b437a16f4b8921646278c /src/compiler/frontend.cc | |
| parent | 4ef3e45d7c6ec3c482a1a48f4df470811aa3cf0a (diff) | |
Fix portable build
Fix exit block handling.
Change-Id: I7a409e36bc602160e8b145b31419af114837cd3a
Diffstat (limited to 'src/compiler/frontend.cc')
| -rw-r--r-- | src/compiler/frontend.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/compiler/frontend.cc b/src/compiler/frontend.cc index 6eb117a200..44baea28fa 100644 --- a/src/compiler/frontend.cc +++ b/src/compiler/frontend.cc @@ -972,7 +972,6 @@ static CompiledMethod* CompileMethod(Compiler& compiler, cur_block = ProcessCanBranch(cu.get(), cur_block, insn, cur_offset, width, flags, code_ptr, code_end); } else if (flags & Instruction::kReturn) { - cur_block->has_return = true; cur_block->fall_through = exit_block; InsertGrowableList(cu.get(), exit_block->predecessors, reinterpret_cast<uintptr_t>(cur_block)); |