+
+ * mips-pinsn.c (print_insn): Return value.
+
+ * 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.
/* 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);
}