2005-04-01  Jan Beulich  <jbeulich@novell.com>

	* config/tc-i386.c (output_imm): Also set sign flag for 64-bit push
	immediates.
This commit is contained in:
Jan Beulich 2005-04-01 15:58:31 +00:00
parent 81fc812e7d
commit a7d61044b2
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-04-01 Jan Beulich <jbeulich@novell.com>
* config/tc-i386.c (output_imm): Also set sign flag for 64-bit push
immediates.
2005-04-01 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* NEWS: Mention [fdgh]_floating.

View File

@ -3567,7 +3567,8 @@ output_imm (insn_start_frag, insn_start_off)
int sign = 0;
if ((i.types[n] & (Imm32S))
&& i.suffix == QWORD_MNEM_SUFFIX)
&& (i.suffix == QWORD_MNEM_SUFFIX
|| (!i.suffix && (i.tm.opcode_modifier & No_lSuf))))
sign = 1;
if (i.types[n] & (Imm8 | Imm8S | Imm16 | Imm64))
{