Fix declaration of mips_pc_is_mips
authorTom Tromey <tromey@adacore.com>
Wed, 19 Feb 2020 19:18:09 +0000 (12:18 -0700)
committerTom Tromey <tromey@adacore.com>
Wed, 19 Feb 2020 19:18:09 +0000 (12:18 -0700)
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
gdb/mips-tdep.h

index 782531161702cf8c56067a4091448ddad64c41cc..3fdebc9b153bac4d60e39ddf810687f4dda6f56f 100644 (file)
@@ -1,3 +1,7 @@
+2020-02-19  Tom Tromey  <tromey@adacore.com>
+
+       * mips-tdep.h (mips_pc_is_mips): Parameter type is CORE_ADDR.
+
 2020-02-19  Tom Tromey  <tromey@adacore.com>
 
        * ada-lang.c (cache_symbol): Use obstack_strdup.
index 032e2cc26df6ffb7bc8e7f52dec9cba59a86fdee..17589e3907d785ab1a9f8a876a74eb7aaa272713 100644 (file)
@@ -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.  */