>From: "J.T. Conklin" <jtc@sun-lamp.cs.berkeley.edu>

Date: Fri, 24 Sep 1993 10:19:20 -0700

Fixed bug that was reported (with patch) on gnu.utils.bug.
Immediate operands of the pushw instruction were being output as 32
bits, rather than the 16 bits they were supposed to be.
This commit is contained in:
Rodney W. Grimes 1993-09-24 17:51:10 +00:00
parent db53bc6c38
commit 35ba288998
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=503

View File

@ -57,7 +57,7 @@ template i386_optab[] = {
{"push", 1, 0x50, _, ShortForm, WordReg,0,0 },
{"push", 1, 0xff, 0x6, Modrm, WordReg|WordMem, 0, 0 },
{"push", 1, 0x6a, _, NoModrm, Imm8S, 0, 0},
{"push", 1, 0x68, _, NoModrm, Imm32, 0, 0},
{"push", 1, 0x68, _, NoModrm, Imm16|Imm32, 0, 0},
{"push", 1, 0x06, _, Seg2ShortForm, SReg2,0,0 },
{"push", 1, 0x0fa0, _, Seg3ShortForm, SReg3,0,0 },
/* push all */