diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2011-07-29 22:56:57 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2011-07-29 22:56:57 +0000 |
commit | f41e5fcc2ad1373a733acb84f5ae944d118fa123 (patch) | |
tree | 844515f1bdcf3533b536d47231e54ccfb9774668 /bfd/elfxx-mips.c | |
parent | c088dedf73b494aeea075cd9824206d04cd26632 (diff) | |
download | binutils-gdb-f41e5fcc2ad1373a733acb84f5ae944d118fa123.tar.gz |
* elfxx-mips.c (check_br32): Fix return type.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index b9fbe66694c..c628b8b1e88 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; |