Add "fild" instruction. GCC 2.95.2 likes to generate this one.

Obtained from:	contrib/binutils/include/opcode/i386.h
This commit is contained in:
David E. O'Brien 1999-11-28 01:05:35 +00:00
parent 521c57eb69
commit 8f5d66533a

View File

@ -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 */