mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
add missing instruction to multiplyR
This commit is contained in:
parent
a8da9ecb05
commit
d48e5377fe
@ -686,6 +686,7 @@ void multiplyR(Context* con, unsigned size, Reg* a, Reg* b, Reg* t) {
|
||||
issue(con, add(H(t), H(t), R(&tmp)));
|
||||
issue(con, mulhw(R(&tmp), R(a), R(b)));
|
||||
issue(con, add(H(t), H(t), R(&tmp)));
|
||||
issue(con, mullw(R(t), R(a), R(b)));
|
||||
freeTemp(con, R(&tmp));
|
||||
} else {
|
||||
issue(con, mullw(R(t), R(a), R(b)));
|
||||
|
Loading…
Reference in New Issue
Block a user