summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2001-09-18 14:59:39 +0000
committerKeith Seitz <keiths@redhat.com>2001-09-18 14:59:39 +0000
commit780cad8d4e673c6192020b3c3ca025edd52c7e3b (patch)
treeb08130010b7b498e897a4ecb11374672c068d699
parente2357e153f14c189833b936192213742e487b86b (diff)
downloadgdb-780cad8d4e673c6192020b3c3ca025edd52c7e3b.tar.gz
* printcmd.c (print_insn): Use the given stream for
output.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/printcmd.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index aedc944a3a8..9b9412772e2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-18 Keith Seitz <keiths@redhat.com>
+
+ * printcmd.c (print_insn): Use the given stream for
+ output.
+
2001-09-10 Jason Molenda (jmolenda@apple.com)
* NEWS: "ANS/ISO C" -> "ISO C".
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index ca2979be066..bd0e28bbd22 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -2441,6 +2441,8 @@ print_insn (CORE_ADDR memaddr, struct ui_file *stream)
TARGET_PRINT_INSN_INFO->mach = TARGET_ARCHITECTURE->mach;
/* else: should set .mach=0 but some disassemblers don't grok this */
+ TARGET_PRINT_INSN_INFO->stream = stream;
+
return TARGET_PRINT_INSN (memaddr, TARGET_PRINT_INSN_INFO);
}