From 8f5d66533afa17ddccc278b3a17f9db41cd5fc6e Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 28 Nov 1999 01:05:35 +0000 Subject: [PATCH] Add "fild" instruction. GCC 2.95.2 likes to generate this one. Obtained from: contrib/binutils/include/opcode/i386.h --- gnu/usr.bin/as/opcode/i386.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/usr.bin/as/opcode/i386.h b/gnu/usr.bin/as/opcode/i386.h index fd482ffe9670..b5357576c63c 100644 --- a/gnu/usr.bin/as/opcode/i386.h +++ b/gnu/usr.bin/as/opcode/i386.h @@ -468,6 +468,7 @@ static const template i386_optab[] = { /* load */ {"fld", 1, 0xd9c0, _, ShortForm, FloatReg, 0, 0}, /* register */ {"flds", 1, 0xd9, 0, Modrm, Mem, 0, 0}, /* %st0 <-- mem float */ +{"fild", 1, 0xdf, 0, Modrm, Mem, 0, 0}, /* %st0 <-- mem word (16) */ {"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 */