patch for bfd/coff-h8300.c

Kazu Hirata kazu@hxi.com
Mon Mar 13 10:28:00 GMT 2000


Hi,

Attached is a patch for bfd/coff-h8300.c against the snapshot on Mar 13.

This one-line patch should be self-explanatory. One of the range checks for
relax conditions has an off-by-one error. The modified line will be the same
as another line in the same file:

bfd/coff-h8300.c(619) - this line remains the same
      if (value <= 0x7fff || value >= 0xff8000)

bfd/coff-h8300.c(799) - modified
      if (value <= 0x7fff || value >= 0xff8000)

Thanks,

Kazu Hirata

-------------- next part --------------
A non-text attachment was scrubbed...
Name: bfd-coff-h8300.patch
Type: text/x-diff
Size: 545 bytes
Desc: not available
URL: <https://sourceware.org/pipermail/binutils/attachments/20000313/268a6ac1/attachment.bin>
-------------- next part --------------
2000-03-13  Kazu Hirata  <kazu@hxi.com>

	* bfd-coff-h8300.patch (h8300_reloc16_extra_cases): Fix the sanity
	check for R_MOVL2.


More information about the Binutils mailing list