aboutsummaryrefslogtreecommitdiffstats
path: root/include/mp_asm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mp_asm.h')
-rw-r--r--include/mp_asm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mp_asm.h b/include/mp_asm.h
index 1066ae43b..5f0747d88 100644
--- a/include/mp_asm.h
+++ b/include/mp_asm.h
@@ -49,9 +49,9 @@ inline word word_madd3(word a, word b, word c, word d, word* carry)
*************************************************/
inline void word3_muladd(word* w2, word* w1, word* w0, word a, word b)
{
- *w0 = word_madd2(a, b, *w0, &a);
- *w1 += a;
- *w2 += (*w1 < a) ? 1 : 0;
+ *w0 = word_madd2(a, b, *w0, &b);
+ *w1 += b;
+ *w2 += (*w1 < b) ? 1 : 0;
}
/*************************************************