From: Stan Shebs Date: Thu, 19 Jan 1995 03:16:42 +0000 (+0000) Subject: * h8300-tdep.c (gdb_print_insn_h8300): Fix typo (&info -> info). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5076ecd0f615325d7ebb1c70ff01f6a336dc2a9a;p=binutils-gdb.git * h8300-tdep.c (gdb_print_insn_h8300): Fix typo (&info -> info). * sh-tdep.c (gdb_print_insn_sh): Ditto. --- diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c index 01f4093f2d4..c099328d2ea 100644 --- a/gdb/h8300-tdep.c +++ b/gdb/h8300-tdep.c @@ -103,9 +103,9 @@ gdb_print_insn_h8300 (memaddr, info) disassemble_info *info; { if (h8300hmode) - return print_insn_h8300h (memaddr, &info); + return print_insn_h8300h (memaddr, info); else - return print_insn_h8300 (memaddr, &info); + return print_insn_h8300 (memaddr, info); } /* Given a GDB frame, determine the address of the calling function's frame. diff --git a/gdb/sh-tdep.c b/gdb/sh-tdep.c index 3f39253b5f8..b35b2dcb2ff 100644 --- a/gdb/sh-tdep.c +++ b/gdb/sh-tdep.c @@ -82,9 +82,9 @@ gdb_print_insn_sh (memaddr, info) disassemble_info *info; { if (TARGET_BYTE_ORDER == BIG_ENDIAN) - return print_insn_sh (memaddr, &info); + return print_insn_sh (memaddr, info); else - return print_insn_shl (memaddr, &info); + return print_insn_shl (memaddr, info); } /* Given a GDB frame, determine the address of the calling function's frame.