about summary refs log tree commit diff stats
path: root/039debug.cc
diff options
context:
space:
mode:
Diffstat (limited to '039debug.cc')
-rw-r--r--039debug.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/039debug.cc b/039debug.cc
index b308a7d4..e3dd8073 100644
--- a/039debug.cc
+++ b/039debug.cc
@@ -39,10 +39,10 @@ void load_source_lines() {
 if (contains_key(Symbol_name, EIP))
   trace(Callstack_depth, "run") << "== label " << get(Symbol_name, EIP) << end();
 if (contains_key(Source_line, EIP))
-  trace(Callstack_depth, "run") << "0x" << HEXWORD << EIP << ": " << get(Source_line, EIP) << end();
+  trace(Callstack_depth, "run") << "inst: " << get(Source_line, EIP) << end();
 else
   // no source line info; do what you can
-  trace(Callstack_depth, "run") << "0x" << HEXWORD << EIP << ": " << debug_info(EIP) << end();
+  trace(Callstack_depth, "run") << "inst: " << debug_info(EIP) << end();
 
 :(code)
 string debug_info(uint32_t inst_address) {