* i386-dis.c (dofloat): Handle %rip-relative floating point addressing.

This commit is contained in:
Alan Modra
2005-12-08 09:59:40 +00:00
parent e424ecc89d
commit 6e50d963b0
2 changed files with 11 additions and 3 deletions

View File

@@ -2689,6 +2689,7 @@ dofloat (int sizeflag)
putop (float_mem[fp_indx], sizeflag);
obufp = op1out;
op_ad = 2;
OP_E (float_mem_mode[fp_indx], sizeflag);
return;
}
@@ -2710,9 +2711,12 @@ dofloat (int sizeflag)
putop (dp->name, sizeflag);
obufp = op1out;
op_ad = 2;
if (dp->op1)
(*dp->op1) (dp->bytemode1, sizeflag);
obufp = op2out;
op_ad = 1;
if (dp->op2)
(*dp->op2) (dp->bytemode2, sizeflag);
}