Commit 5d3c4797 by Jeffrey A Law Committed by Jeff Law

* i386.c (ix86_attr_length_default): Handle TYPE_FXCH.

From-SVN: r29074
parent 6aabeed2
Thu Sep 2 20:18:12 1999 Jeffrey A Law (law@cygnus.com)
* i386.c (ix86_attr_length_default): Handle TYPE_FXCH.
Thu Sep 2 22:00:08 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
* stmt.c (expand_asm_operands): Fix index into inout_mode when
......
......@@ -5142,6 +5142,12 @@ ix86_attr_length_default (insn)
case TYPE_MULTI:
return 15;
case TYPE_FXCH:
if (STACK_TOP_P (recog_operand[0]))
return 2 + (REGNO (recog_operand[1]) != FIRST_STACK_REG + 1);
else
return 2 + (REGNO (recog_operand[0]) != FIRST_STACK_REG + 1);
default:
abort ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment