* gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of
fprintf_filtered.
This commit is contained in:
parent
1480482acb
commit
d807bd8772
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
|
Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
|
||||||
|
|
||||||
|
* gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of
|
||||||
|
fprintf_filtered.
|
||||||
|
|
||||||
* Makefile.in sh3-rom.c config/sh/sh.mt config/sh/tm-sh.h: Add
|
* Makefile.in sh3-rom.c config/sh/sh.mt config/sh/tm-sh.h: Add
|
||||||
sh3 monitor support.
|
sh3 monitor support.
|
||||||
* monitor.c: Cleanup regexp compilation stuff to make it easier
|
* monitor.c: Cleanup regexp compilation stuff to make it easier
|
||||||
|
|
|
@ -790,7 +790,7 @@ gdb_disassemble (clientData, interp, argc, argv)
|
||||||
CORE_ADDR pc, low, high;
|
CORE_ADDR pc, low, high;
|
||||||
int mixed_source_and_assembly;
|
int mixed_source_and_assembly;
|
||||||
static disassemble_info di = {
|
static disassemble_info di = {
|
||||||
(fprintf_ftype) fprintf_filtered, /* fprintf_func */
|
(fprintf_ftype) fprintf_unfiltered, /* fprintf_func */
|
||||||
gdb_stdout, /* stream */
|
gdb_stdout, /* stream */
|
||||||
NULL, /* application_data */
|
NULL, /* application_data */
|
||||||
0, /* flags */
|
0, /* flags */
|
||||||
|
|
Loading…
Reference in a new issue