aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2011-07-29 22:56:57 +0000
committerMaciej W. Rozycki <macro@linux-mips.org>2011-07-29 22:56:57 +0000
commitf41e5fcc2ad1373a733acb84f5ae944d118fa123 (patch)
tree844515f1bdcf3533b536d47231e54ccfb9774668
parentc088dedf73b494aeea075cd9824206d04cd26632 (diff)
downloadgdb-f41e5fcc2ad1373a733acb84f5ae944d118fa123.zip
gdb-f41e5fcc2ad1373a733acb84f5ae944d118fa123.tar.gz
gdb-f41e5fcc2ad1373a733acb84f5ae944d118fa123.tar.bz2
* elfxx-mips.c (check_br32): Fix return type.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/elfxx-mips.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index a7ee0fe..9a4b3f6 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
2011-07-29 Maciej W. Rozycki <macro@codesourcery.com>
+ * elfxx-mips.c (check_br32): Fix return type.
+
+2011-07-29 Maciej W. Rozycki <macro@codesourcery.com>
+
* elfxx-mips.c (bz_insn_16): Correct opcode mask.
2011-07-29 Maciej W. Rozycki <macro@codesourcery.com>
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c
index b9fbe66..c628b8b 100644
--- a/bfd/elfxx-mips.c
+++ b/bfd/elfxx-mips.c
@@ -12239,7 +12239,7 @@ check_br16 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
/* If PTR points to a 32-bit branch or jump that doesn't fiddle with REG,
then return TRUE, otherwise FALSE. */
-static int
+static bfd_boolean
check_br32 (bfd *abfd, bfd_byte *ptr, unsigned long reg)
{
unsigned long opcode;