This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

patch for bfd/coff-h8300.c


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

ChangeLog-bfd-coff-h8300

bfd-coff-h8300.patch


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]