[gnu.gcc.bug] Bug in GAS 1.28 for i386, fix included

LAHTI%VTTTEL@router.funet.fi ("Jerry Lahti VTT/TEL tel. +358 0 456 5604") (02/20/89)

GAS 1.28 for i386:
There seems to be a missing 3rd parameter in a call to md_number_to_chars.
Probable fix follows.

Jerry Lahti
Technical Research Centre of Finland, Telecom laboratory


*** i386.c.bug	Tue Dec 27 22:41:45 1988
--- i386.c	Sun Feb 19 14:31:35 1989
***************
*** 1578,1582 ****
  
    offset = to_addr - (from_addr + 2);
!   md_number_to_chars (ptr, (long) 0xeb); /* opcode for byte-disp jump */
    md_number_to_chars (ptr + 1, offset, 1);
  }
--- 1578,1582 ----
  
    offset = to_addr - (from_addr + 2);
!   md_number_to_chars (ptr, (long) 0xeb, 1); /* opcode for byte-disp jump */
    md_number_to_chars (ptr + 1, offset, 1);
  }