diff options
author | 2014-06-13 22:50:49 +0000 | |
---|---|---|
committer | 2014-06-12 03:32:07 +0000 | |
commit | 97ed29f800c56a06fd6989e0883e4c97bedd2453 (patch) | |
tree | 429a8e13c459265d526cd8b4b31d5ee42cfe58ba /compiler/dex/mir_graph.cc | |
parent | 8cd927c8f6911cfb6118b8c54550959c09eb84f8 (diff) | |
parent | 4439596b00c91f565370bf0813cc2f9165093693 (diff) |
Merge "ART: Hide unreachable basic blocks in the compiler"
Diffstat (limited to 'compiler/dex/mir_graph.cc')
-rw-r--r-- | compiler/dex/mir_graph.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/mir_graph.cc b/compiler/dex/mir_graph.cc index a2676c82ca..63a55707e5 100644 --- a/compiler/dex/mir_graph.cc +++ b/compiler/dex/mir_graph.cc @@ -586,7 +586,7 @@ void MIRGraph::InlineMethod(const DexFile::CodeItem* code_item, uint32_t access_ if (current_method_ == 0) { DCHECK(entry_block_ == NULL); DCHECK(exit_block_ == NULL); - DCHECK_EQ(num_blocks_, 0); + DCHECK_EQ(num_blocks_, 0U); // Use id 0 to represent a null block. BasicBlock* null_block = NewMemBB(kNullBlock, num_blocks_++); DCHECK_EQ(null_block->id, NullBasicBlockId); |