mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
Remove unused file_string parameter in gdb_disassembly
The file_string parameter was added in 8f0eea0
(sorry, no title back
then) and has never actually been used.
gdb/ChangeLog:
* disasm.h (gdb_disassembly): Remove file_string parameter.
* disasm.c (gdb_disassembly): Likewise.
* cli/cli-cmds.c (print_disassembly): Adapt.
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
* stack.c (do_gdb_disassembly): Likewise.
This commit is contained in:
parent
981d5de71d
commit
7a8eb317c5
@ -1,3 +1,11 @@
|
||||
2017-02-01 Simon Marchi <simon.marchi@polymtl.ca>
|
||||
|
||||
* disasm.h (gdb_disassembly): Remove file_string parameter.
|
||||
* disasm.c (gdb_disassembly): Likewise.
|
||||
* cli/cli-cmds.c (print_disassembly): Adapt.
|
||||
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
|
||||
* stack.c (do_gdb_disassembly): Likewise.
|
||||
|
||||
2017-02-01 Andreas Arnez <arnez@linux.vnet.ibm.com>
|
||||
|
||||
* dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
|
||||
|
@ -1148,7 +1148,7 @@ print_disassembly (struct gdbarch *gdbarch, const char *name,
|
||||
paddress (gdbarch, low), paddress (gdbarch, high));
|
||||
|
||||
/* Dump the specified range. */
|
||||
gdb_disassembly (gdbarch, current_uiout, 0, flags, -1, low, high);
|
||||
gdb_disassembly (gdbarch, current_uiout, flags, -1, low, high);
|
||||
|
||||
printf_filtered ("End of assembler dump.\n");
|
||||
gdb_flush (gdb_stdout);
|
||||
|
@ -815,7 +815,7 @@ gdb_disassembler::print_insn (CORE_ADDR memaddr,
|
||||
|
||||
void
|
||||
gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout,
|
||||
char *file_string, int flags, int how_many,
|
||||
int flags, int how_many,
|
||||
CORE_ADDR low, CORE_ADDR high)
|
||||
{
|
||||
struct ui_file *stb = mem_fileopen ();
|
||||
|
@ -92,7 +92,7 @@ struct disasm_insn
|
||||
};
|
||||
|
||||
extern void gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout,
|
||||
char *file_string, int flags, int how_many,
|
||||
int flags, int how_many,
|
||||
CORE_ADDR low, CORE_ADDR high);
|
||||
|
||||
/* Print the instruction at address MEMADDR in debugged memory,
|
||||
|
@ -187,7 +187,6 @@ mi_cmd_disassemble (char *command, char **argv, int argc)
|
||||
}
|
||||
|
||||
gdb_disassembly (gdbarch, uiout,
|
||||
file_string,
|
||||
disasm_flags,
|
||||
how_many, low, high);
|
||||
|
||||
|
@ -770,7 +770,7 @@ do_gdb_disassembly (struct gdbarch *gdbarch,
|
||||
|
||||
TRY
|
||||
{
|
||||
gdb_disassembly (gdbarch, current_uiout, 0,
|
||||
gdb_disassembly (gdbarch, current_uiout,
|
||||
DISASSEMBLY_RAW_INSN, how_many,
|
||||
low, high);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user