diff options
author | 2014-09-29 18:31:02 +0000 | |
---|---|---|
committer | 2014-09-29 18:31:02 +0000 | |
commit | 1edf638010c4b15b87f865d180c3b95026827e9a (patch) | |
tree | bc752c9dd1f36cf0421e56c267e772e7c7ebf43f /compiler/dex/quick/codegen_util.cc | |
parent | f731a78809ac61a9085781370f0f38ef88305276 (diff) | |
parent | 750359753444498d509a756fa9a042e9f3c432df (diff) |
Merge "ART: Deprecate CompilationUnit's code_item"
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r-- | compiler/dex/quick/codegen_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index 313589227f..f30501749a 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -319,7 +319,7 @@ void Mir2Lir::CodegenDump() { LOG(INFO) << "Dumping LIR insns for " << PrettyMethod(cu_->method_idx, *cu_->dex_file); LIR* lir_insn; - int insns_size = cu_->code_item->insns_size_in_code_units_; + int insns_size = mir_graph_->GetNumDalvikInsns(); LOG(INFO) << "Regs (excluding ins) : " << mir_graph_->GetNumOfLocalCodeVRs(); LOG(INFO) << "Ins : " << mir_graph_->GetNumOfInVRs(); |