From 395d8fa68a631b5c57c18741c3010fec49f04bbd Mon Sep 17 00:00:00 2001 From: lkcl Date: Wed, 27 Apr 2022 10:36:23 +0100 Subject: [PATCH] --- openpower/sv/biginteger/analysis.mdwn | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openpower/sv/biginteger/analysis.mdwn b/openpower/sv/biginteger/analysis.mdwn index 9cce6b8ad..63b614331 100644 --- a/openpower/sv/biginteger/analysis.mdwn +++ b/openpower/sv/biginteger/analysis.mdwn @@ -322,8 +322,7 @@ this time using subtract instead of add. ``` uint32_t carry = 0; - // this becomes the basis for sv.msubed in RS=RC Mode, - // where carry is RC + // this is just sv.madded again for (int i = 0; i <= n; i++) { uint64_t value = (uint64_t)vn[i] * (uint64_t)qhat + carry; carry = (uint32_t)(value >> 32); // upper half for next loop -- 2.30.2