diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2006-05-22 11:58:46 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2006-05-22 11:58:46 +0000 |
commit | 5fcb9b4838a61bd53b4008d618b89ceee5914091 (patch) | |
tree | 9e6db2bd9c3ed128fe4fcf2bcb71250e9952f261 | |
parent | * binutils/testsuite/binutils-all/objcopy.exp: Skip for uclinux (diff) | |
download | binutils-gdb-5fcb9b4838a61bd53b4008d618b89ceee5914091.tar.gz binutils-gdb-5fcb9b4838a61bd53b4008d618b89ceee5914091.tar.bz2 binutils-gdb-5fcb9b4838a61bd53b4008d618b89ceee5914091.zip |
opcodes/
* m68k-dis.c (m68k_scan_mask): Add missing return.
-rw-r--r-- | ChangeLog.csl | 5 | ||||
-rw-r--r-- | opcodes/m68k-dis.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index 403ecf659f1..ff2ccb227b0 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,8 @@ +2006-05-22 Richard Sandiford <richard@codesourcery.com> + + opcodes/ + * m68k-dis.c (m68k_scan_mask): Add missing return. + 2006-05-20 Nathan Sidwell <nathan@codesourcery.com> * binutils/testsuite/binutils-all/objcopy.exp: Skip for uclinux diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index d115430fbfb..fa29dd35957 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -1453,6 +1453,7 @@ m68k_scan_mask (bfd_vma memaddr, disassemble_info *info, return val; } } + return 0; } /* Print the m68k instruction at address MEMADDR in debugged memory, |