fix wrong arg order for fmul/fadd

This commit is contained in:
Kelly Wilson
2009-05-05 11:51:00 -06:00
parent 5723fa7492
commit c60ce29bde
2 changed files with 4 additions and 4 deletions

View File

@@ -1821,9 +1821,9 @@ namespace AsmParserx8632
else if ( op == Op_FMath0 || op == Op_FdST0ST1 )
{
operands[0].cls = Opr_Reg;
operands[0].reg = Reg_ST;
operands[0].reg = Reg_ST1;
operands[1].cls = Opr_Reg;
operands[1].reg = Reg_ST1;
operands[1].reg = Reg_ST;
nOperands = 2;
}

View File

@@ -1943,9 +1943,9 @@ namespace AsmParserx8664
else if ( op == Op_FMath0 || op == Op_FdST0ST1 )
{
operands[0].cls = Opr_Reg;
operands[0].reg = Reg_ST;
operands[0].reg = Reg_ST1;
operands[1].cls = Opr_Reg;
operands[1].reg = Reg_ST1;
operands[1].reg = Reg_ST;
nOperands = 2;
}