mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-24 00:33:12 +01:00
fix wrong arg order for fmul/fadd
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user