Fix two more mips-tdep.h declarations
My earlier patch to fix a declaration mismatch in mips-tdep.h missed a couple of spots. Basically, I sent it too soon. This patch fixes a couple more mismatches between a declaration (using bfd_vma) and the definition (using CORE_ADDR). gdb/ChangeLog 2020-02-21 Tom Tromey <tromey@adacore.com> * mips-tdep.h (mips_pc_is_mips16, mips_pc_is_micromips): Parameter type is CORE_ADDR.
This commit is contained in:
parent
1eb7317953
commit
e94e944bf2
@ -1,3 +1,8 @@
|
|||||||
|
2020-02-21 Tom Tromey <tromey@adacore.com>
|
||||||
|
|
||||||
|
* mips-tdep.h (mips_pc_is_mips16, mips_pc_is_micromips): Parameter
|
||||||
|
type is CORE_ADDR.
|
||||||
|
|
||||||
2020-02-21 Tom de Vries <tdevries@suse.de>
|
2020-02-21 Tom de Vries <tdevries@suse.de>
|
||||||
|
|
||||||
PR gdb/25534
|
PR gdb/25534
|
||||||
|
@ -166,11 +166,11 @@ extern int mips_pc_is_mips (CORE_ADDR memaddr);
|
|||||||
|
|
||||||
/* Tell if the program counter value in MEMADDR is in a MIPS16
|
/* Tell if the program counter value in MEMADDR is in a MIPS16
|
||||||
function. */
|
function. */
|
||||||
extern int mips_pc_is_mips16 (struct gdbarch *gdbarch, bfd_vma memaddr);
|
extern int mips_pc_is_mips16 (struct gdbarch *gdbarch, CORE_ADDR memaddr);
|
||||||
|
|
||||||
/* Tell if the program counter value in MEMADDR is in a microMIPS
|
/* Tell if the program counter value in MEMADDR is in a microMIPS
|
||||||
function. */
|
function. */
|
||||||
extern int mips_pc_is_micromips (struct gdbarch *gdbarch, bfd_vma memaddr);
|
extern int mips_pc_is_micromips (struct gdbarch *gdbarch, CORE_ADDR memaddr);
|
||||||
|
|
||||||
/* Return the currently configured (or set) saved register size. */
|
/* Return the currently configured (or set) saved register size. */
|
||||||
extern unsigned int mips_abi_regsize (struct gdbarch *gdbarch);
|
extern unsigned int mips_abi_regsize (struct gdbarch *gdbarch);
|
||||||
|
Loading…
Reference in New Issue
Block a user