[pushed] Fix declaration of mips_pc_is_mips

Message ID 20200219192126.2557-1-tromey@adacore.com
State New, archived
Headers

Commit Message

Tom Tromey Feb. 19, 2020, 7:21 p.m. UTC
  A build where CORE_ADDR is not the same as bfd_vma pointed out that
mips_pc_is_mips is declared using bfd_vma as the parameter type, but
defined using CORE_ADDR.  This patch fixes the declaration.

gdb/ChangeLog
2020-02-19  Tom Tromey  <tromey@adacore.com>

	* mips-tdep.h (mips_pc_is_mips): Parameter type is CORE_ADDR.
---
 gdb/ChangeLog   | 4 ++++
 gdb/mips-tdep.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
  

Patch

diff --git a/gdb/mips-tdep.h b/gdb/mips-tdep.h
index 032e2cc26df..17589e3907d 100644
--- a/gdb/mips-tdep.h
+++ b/gdb/mips-tdep.h
@@ -162,7 +162,7 @@  extern CORE_ADDR mips_unmake_compact_addr (CORE_ADDR addr);
 
 /* Tell if the program counter value in MEMADDR is in a standard
    MIPS function.  */
-extern int mips_pc_is_mips (bfd_vma memaddr);
+extern int mips_pc_is_mips (CORE_ADDR memaddr);
 
 /* Tell if the program counter value in MEMADDR is in a MIPS16
    function.  */