Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Nov 1999 12:41:48 -0800
From:      "David O'Brien" <obrien@freebsd.org>
To:        Motoyuki Konno <motoyuki@snipe.rim.or.jp>
Cc:        knu@idaemons.org, ports@freebsd.org, freebsd-current@freebsd.org
Subject:   Re: flashplugin
Message-ID:  <19991122124148.A5950@dragon.nuxi.com>
In-Reply-To: <199911211540.AAA49063@sakura.snipe.rim.or.jp>; from motoyuki@snipe.rim.or.jp on Mon, Nov 22, 1999 at 12:40:19AM %2B0900
References:  <19991120174617.J41154@daemon.ninth-circle.org> <199911211540.AAA49063@sakura.snipe.rim.or.jp>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Nov 22, 1999 at 12:40:19AM +0900, Motoyuki Konno wrote:
> Gcc 2.95.2 output asmcodes which contain 'fild' opcode, but
> /usr/libexec/aout/as (a.out version of as) does not support 'fild'.

Please try this diff:

Index: i386.h
===================================================================
RCS file: /home/ncvs/src/gnu/usr.bin/as/opcode/i386.h,v
retrieving revision 1.10
diff -u -r1.10 i386.h
--- i386.h	1999/08/27 23:34:33	1.10
+++ i386.h	1999/11/22 20:40:41
@@ -468,12 +468,13 @@
 /* load */
 {"fld", 1, 0xd9c0, _, ShortForm, FloatReg, 0, 0}, /* register */
 {"flds", 1, 0xd9, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem float */
-{"fildl", 1, 0xdb, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem word */
 {"fldl", 1, 0xdd, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem double */
 {"fldl", 1, 0xd9c0, _, ShortForm, FloatReg, 0, 0}, /* register */
+{"fild", 1, 0xdf, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem word (16) */
+{"fildl", 1, 0xdb, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem word */
 {"filds", 1, 0xdf, 0, Modrm, Mem, 0, 0},           /* %st0 <-- mem dword */
-{"fildll", 1, 0xdf, 5, Modrm, Mem, 0, 0},           /* %st0 <-- mem qword */
 {"fildq", 1, 0xdf, 5, Modrm, Mem, 0, 0},           /* %st0 <-- mem qword */
+{"fildll", 1, 0xdf, 5, Modrm, Mem, 0, 0},           /* %st0 <-- mem qword */
 {"fldt", 1, 0xdb, 5, Modrm, Mem, 0, 0},           /* %st0 <-- mem efloat */
 {"fbld", 1, 0xdf, 4, Modrm, Mem, 0, 0},           /* %st0 <-- mem bcd */
 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19991122124148.A5950>