mirror of
https://github.com/corda/corda.git
synced 2025-01-21 12:05:08 +00:00
fix operand ordering in remainderR
This commit is contained in:
parent
ec610a5521
commit
75e28e81c9
@ -722,8 +722,8 @@ void divideR(Context* con, unsigned size, Reg* a, Reg* b, Reg* t) {
|
||||
|
||||
void remainderR(Context* con, unsigned size, Reg* a, Reg* b, Reg* t) {
|
||||
divideR(con, size, a, b, t);
|
||||
multiplyR(con, size, b, t, t);
|
||||
subR(con, size, t, a, t);
|
||||
multiplyR(con, size, a, t, t);
|
||||
subR(con, size, t, b, t);
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user