summaryrefslogtreecommitdiff
path: root/compiler/dex/mir_graph_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/dex/mir_graph_test.cc')
-rw-r--r--compiler/dex/mir_graph_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/dex/mir_graph_test.cc b/compiler/dex/mir_graph_test.cc
index 932f453b3c..bdc05a968e 100644
--- a/compiler/dex/mir_graph_test.cc
+++ b/compiler/dex/mir_graph_test.cc
@@ -103,6 +103,10 @@ class TopologicalSortOrderTest : public testing::Test {
ASSERT_EQ(kEntryBlock, cu_.mir_graph->entry_block_->block_type);
cu_.mir_graph->exit_block_ = cu_.mir_graph->block_list_.Get(2);
ASSERT_EQ(kExitBlock, cu_.mir_graph->exit_block_->block_type);
+
+ DexFile::CodeItem* code_item = static_cast<DexFile::CodeItem*>(cu_.arena.Alloc(sizeof(DexFile::CodeItem),
+ kArenaAllocMisc));
+ cu_.mir_graph->current_code_item_ = cu_.code_item = code_item;
}
template <size_t count>