* config/mips/tm-mips.h (t_insn): Delete.
* mips-tdep.c (mips_fetch_instruction, mips_skip_trampoline_code):
Replace t_insn with ULONGEST.
+2004-10-30 Andrew Cagney <cagney@gnu.org>
+
+ * config/mips/tm-mips.h (t_insn): Delete.
+ * mips-tdep.c (mips_fetch_instruction, mips_skip_trampoline_code):
+ Replace t_insn with ULONGEST.
+
2004-10-30 Mark Kettenis <kettenis@gnu.org>
* mipsnbsd-tdep.c: Include "regset.h" and "gdb_assert.h".
#define DEPRECATED_IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc)
extern int mips_ignore_helper (CORE_ADDR pc);
-/* Definitions and declarations used by mips-tdep.c and remote-mips.c */
-typedef unsigned long t_inst; /* Integer big enough to hold an instruction */
-
#endif /* TM_MIPS_H */
/* Fetch and return instruction from the specified location. If the PC
is odd, assume it's a MIPS16 instruction; otherwise MIPS32. */
-static t_inst
+static ULONGEST
mips_fetch_instruction (CORE_ADDR addr)
{
char buf[MIPS_INSN32_SIZE];
address from those two instructions. */
CORE_ADDR target_pc = read_signed_register (2);
- t_inst inst;
+ ULONGEST inst;
int i;
/* See if the name of the target function is __fn_stub_*. */