diff options
Diffstat (limited to 'source/Target/ThreadPlanTracer.cpp')
-rw-r--r-- | source/Target/ThreadPlanTracer.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/Target/ThreadPlanTracer.cpp b/source/Target/ThreadPlanTracer.cpp index 5188df6d9193..d2b039d69f67 100644 --- a/source/Target/ThreadPlanTracer.cpp +++ b/source/Target/ThreadPlanTracer.cpp @@ -212,11 +212,15 @@ ThreadPlanAssemblyTracer::Log () const bool show_bytes = true; const bool show_address = true; Instruction *instruction = instruction_list.GetInstructionAtIndex(0).get(); + const char *disassemble_format = "${addr-file-or-load}: "; instruction->Dump (stream, max_opcode_byte_size, show_address, show_bytes, - NULL); + NULL, + NULL, + NULL, + disassemble_format); } } } |