diff options
Diffstat (limited to 'src/compiler/compiler_ir.h')
| -rw-r--r-- | src/compiler/compiler_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/compiler_ir.h b/src/compiler/compiler_ir.h index 056c308c79..c652f0c00d 100644 --- a/src/compiler/compiler_ir.h +++ b/src/compiler/compiler_ir.h @@ -230,8 +230,8 @@ struct BasicBlock { bool catch_entry; bool explicit_throw; bool conditional_branch; - bool has_return; // Contains a return. - bool dominates_return; // Is a member of return extended basic block + bool terminated_by_return; // Block ends with a Dalvik return opcode. + bool dominates_return; // Is a member of return extended basic block. uint16_t start_offset; uint16_t nesting_depth; BBType block_type; |