* mips-pinsn.c (print_insn): Return value.

This commit is contained in:
Ian Lance Taylor
1993-05-03 20:55:40 +00:00
parent 2a1c2bad8b
commit 588cca9021
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
Mon May 3 13:52:08 1993 Ian Lance Taylor (ian@cygnus.com)
* mips-pinsn.c (print_insn): Return value.
Sun May 2 11:43:57 1993 Fred Fish (fnf@cygnus.com)
* Makefile.in (SFILES): Remove ser-hardwire.c; it is a link made
at configuration time and doesn't belong in the distribution archive.
* Makefile.in (NONSRC): Add 29k-share/README.
* Makefile.in (HFILES): Add 29k-share/udi/udiids.h.

View File

@ -35,7 +35,7 @@ print_insn (memaddr, stream)
/* print_insn_mips is in opcodes/mips-dis.c. */
if (TARGET_BYTE_ORDER == BIG_ENDIAN)
print_insn_big_mips (memaddr, &info);
return print_insn_big_mips (memaddr, &info);
else
print_insn_little_mips (memaddr, &info);
return print_insn_little_mips (memaddr, &info);
}