summaryrefslogtreecommitdiff
path: root/gdb/disasm.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2003-08-14 21:39:05 +0000
committerMichael Snyder <msnyder@specifix.com>2003-08-14 21:39:05 +0000
commit070b5942365616d4c8c9a52a1df41af3dcec446d (patch)
tree173e644e5f85b2fe66042e5ff5f45eeec93d3066 /gdb/disasm.c
parent4bbba309079334d3ca24fc9a75f80222f8074705 (diff)
downloadgdb-070b5942365616d4c8c9a52a1df41af3dcec446d.tar.gz
2003-08-14 Michael Snyder <msnyder@redhat.com>
* disasm.c (gdb_disassemble_info): Set info->insn_sets to zero.
Diffstat (limited to 'gdb/disasm.c')
-rw-r--r--gdb/disasm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/disasm.c b/gdb/disasm.c
index f86ec3f5058..47bb125bfc6 100644
--- a/gdb/disasm.c
+++ b/gdb/disasm.c
@@ -334,6 +334,7 @@ gdb_disassemble_info (struct gdbarch *gdbarch, struct ui_file *file)
di.arch = gdbarch_bfd_arch_info (gdbarch)->arch;
di.mach = gdbarch_bfd_arch_info (gdbarch)->mach;
di.endian = gdbarch_byte_order (gdbarch);
+ di.insn_sets = 0;
return di;
}