* disasm.c (gdb_disassembly): Remove unused argument

"line_num".
	* disasm.h (gdb_disassembly): Ditto.
	* cli/cli-cmds.c (print_disassembly): Ditto.
	* mi/mi-cmd-disas.c (mi_cmd_disassemble): Ditto.
This commit is contained in:
Hui Zhu
2009-03-10 08:53:53 +00:00
parent 69fe9ce501
commit 55518360d8
5 changed files with 9 additions and 4 deletions

View File

@ -905,7 +905,7 @@ print_disassembly (const char *name, CORE_ADDR low, CORE_ADDR high, int mixed)
printf_filtered ("from %s to %s:\n", paddress (low), paddress (high));
/* Dump the specified range. */
gdb_disassembly (uiout, 0, 0, mixed, -1, low, high);
gdb_disassembly (uiout, 0, mixed, -1, low, high);
printf_filtered ("End of assembler dump.\n");
gdb_flush (gdb_stdout);