summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/arm/CodegenCommon.cc
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2011-11-14 14:32:37 -0800
committer Ian Rogers <irogers@google.com> 2011-11-14 15:40:11 -0800
commita3760aad59f41bb0b1d46733165a2d7219ecca73 (patch)
tree28c031bac11cc172f04b8943e189bf1d065acd9c /src/compiler/codegen/arm/CodegenCommon.cc
parent169c9a7f46776b235d0a37d5e0ff27682deffe06 (diff)
Refactor the use of Method by the oat compiler.
Change-Id: Ib0ee18ed06846f82567f746edc7a5049dc6215df
Diffstat (limited to 'src/compiler/codegen/arm/CodegenCommon.cc')
-rw-r--r--src/compiler/codegen/arm/CodegenCommon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/codegen/arm/CodegenCommon.cc b/src/compiler/codegen/arm/CodegenCommon.cc
index 4a2768c02d..9b71b14b83 100644
--- a/src/compiler/codegen/arm/CodegenCommon.cc
+++ b/src/compiler/codegen/arm/CodegenCommon.cc
@@ -283,7 +283,7 @@ STATIC ArmLIR* newLIR3(CompilationUnit* cUnit, ArmOpcode opcode,
DCHECK(isPseudoOpcode(opcode) ||
(EncodingMap[opcode].flags & IS_TERTIARY_OP))
<< (int)opcode << " "
- << PrettyMethod(cUnit->method) << " "
+ << PrettyMethod(cUnit->method_idx, *cUnit->dex_file) << " "
<< cUnit->currentDalvikOffset;
insn->opcode = opcode;
insn->operands[0] = dest;