summaryrefslogtreecommitdiff
path: root/gdb/disasm.h
diff options
context:
space:
mode:
authorMarkus Metzger <mmetzger@sourceware.org>2013-03-11 08:53:17 +0000
committerMarkus Metzger <mmetzger@sourceware.org>2013-03-11 08:53:17 +0000
commit946287b73c02d2bd079af1fcf6a3b412365a2851 (patch)
tree52dfcac0b29260e9936b69e30da40f540bd369ef /gdb/disasm.h
parentafedecd388d5a4db011c51c617daa1e7224b79e4 (diff)
downloadbinutils-gdb-946287b73c02d2bd079af1fcf6a3b412365a2851.tar.gz
Add a disassembly flag to omit the pc prefix and use it in the "record
instruction-history" command of record-btrace. The pc prefix would appear multiple times in the branch trace disassembly, which is more confusing than helpful. gdb/ * record-btrace.c (btrace_insn_history): Omit the pc prefix in the instruction history disassembly. * disasm.c (dump_insns): Omit the pc prefix, if requested. * disasm.h (DISASSEMBLY_OMIT_PC): New.
Diffstat (limited to 'gdb/disasm.h')
-rw-r--r--gdb/disasm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/disasm.h b/gdb/disasm.h
index 20ceb2b8c79..3743ccc916b 100644
--- a/gdb/disasm.h
+++ b/gdb/disasm.h
@@ -23,6 +23,7 @@
#define DISASSEMBLY_RAW_INSN (0x1 << 1)
#define DISASSEMBLY_OMIT_FNAME (0x1 << 2)
#define DISASSEMBLY_FILENAME (0x1 << 3)
+#define DISASSEMBLY_OMIT_PC (0x1 << 4)
struct ui_out;
struct ui_file;