e2k: Fix fcomb_check.
This commit is contained in:
parent
8a56f792b7
commit
f73e828f75
@ -4197,7 +4197,7 @@ static inline bool fcomb_check(Instr *instr, FComb opc1, FComb opc2)
|
||||
}
|
||||
|
||||
if (ver >= 2) {
|
||||
return fcomb_is_mul_unit(opc1) != fcomb_is_mul_unit(opc2);
|
||||
return !(fcomb_is_mul_unit(opc1) && fcomb_is_mul_unit(opc2));
|
||||
} else {
|
||||
return fcomb_is_add_unit(opc1) == fcomb_is_mul_unit(opc2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user