diff options
Diffstat (limited to 'vm/compiler/Dataflow.cpp')
| -rw-r--r-- | vm/compiler/Dataflow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/compiler/Dataflow.cpp b/vm/compiler/Dataflow.cpp index 28bed680c..7f164cb84 100644 --- a/vm/compiler/Dataflow.cpp +++ b/vm/compiler/Dataflow.cpp @@ -1601,7 +1601,7 @@ char *dvmCompilerGetDalvikDisassembly(const DecodedInstruction *insn, strcpy(buffer, "PHI"); } else { - sprintf(buffer, "Opcode 0x%x", opcode); + sprintf(buffer, "Opcode %#x", opcode); } flags = 0; } else { @@ -1712,7 +1712,7 @@ char *dvmCompilerFullDisassembler(const CompilationUnit *cUnit, snprintf(buffer + strlen(buffer), 256, ")"); } else { - sprintf(buffer, "Opcode 0x%x", opcode); + sprintf(buffer, "Opcode %#x", opcode); } goto done; } else { |
