Path: utzoo!telly!attcan!uunet!tut.cis.ohio-state.edu!router.funet.fi!LAHTI%VTTTEL From: LAHTI%VTTTEL@router.funet.fi ("Jerry Lahti VTT/TEL tel. +358 0 456 5604") Newsgroups: gnu.gcc.bug Subject: Bug in GAS 1.28 for i386, fix included Message-ID: <8902200555.AA10854@etana.funet.fi> Date: 20 Feb 89 12:50:00 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 23 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); }