aboutsummaryrefslogtreecommitdiff
path: root/gdb/disasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/disasm.h')
-rw-r--r--gdb/disasm.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/disasm.h b/gdb/disasm.h
index 2f9c370..a11280d 100644
--- a/gdb/disasm.h
+++ b/gdb/disasm.h
@@ -22,7 +22,7 @@
struct ui_out;
struct ui_file;
-extern void gdb_disassembly (struct ui_out *uiout,
+extern void gdb_disassembly (struct gdbarch *gdbarch, struct ui_out *uiout,
char *file_string,
int mixed_source_and_assembly,
int how_many, CORE_ADDR low, CORE_ADDR high);
@@ -31,8 +31,7 @@ extern void gdb_disassembly (struct ui_out *uiout,
on STREAM. Returns the length of the instruction, in bytes,
and, if requested, the number of branch delay slot instructions. */
-extern int gdb_print_insn (CORE_ADDR memaddr,
- struct ui_file *stream,
- int *branch_delay_insns);
+extern int gdb_print_insn (struct gdbarch *gdbarch, CORE_ADDR memaddr,
+ struct ui_file *stream, int *branch_delay_insns);
#endif