summaryrefslogtreecommitdiff
path: root/mpn/power
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2007-09-24 20:43:10 +0200
committertege <tege@gmplib.org>2007-09-24 20:43:10 +0200
commit441ed3ed6eb41fea0e930b021ad945258599de96 (patch)
tree6a9da068e182c458c26dd69637610a6141ae63c6 /mpn/power
parent3015e368f9ba348fd73a0a24f04efa4f05dc4e98 (diff)
downloadgmp-441ed3ed6eb41fea0e930b021ad945258599de96.tar.gz
Clean up a comment.
Diffstat (limited to 'mpn/power')
-rw-r--r--mpn/power/addmul_1.asm2
-rw-r--r--mpn/power/mul_1.asm4
-rw-r--r--mpn/power/submul_1.asm2
3 files changed, 4 insertions, 4 deletions
diff --git a/mpn/power/addmul_1.asm b/mpn/power/addmul_1.asm
index 7ed83f0ea..fcda2c126 100644
--- a/mpn/power/addmul_1.asm
+++ b/mpn/power/addmul_1.asm
@@ -33,7 +33,7 @@ dnl has its most significant bit set, and we add the multiplier if the
dnl multiplicand has its most significant bit set. We need to preserve the
dnl carry flag between each iteration, so we have to compute the compensation
dnl carefully (the natural, srai+and doesn't work). Since all POWER can
-dnl branch in zero cycles, we use conditional branches to for the additions.
+dnl branch in zero cycles, we use conditional branches for the compensation.
include(`../config.m4')
diff --git a/mpn/power/mul_1.asm b/mpn/power/mul_1.asm
index 989168a4f..bd33942ad 100644
--- a/mpn/power/mul_1.asm
+++ b/mpn/power/mul_1.asm
@@ -22,7 +22,7 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
dnl INPUT PARAMETERS
dnl res_ptr r3
dnl s1_ptr r4
-dnl size r5
+dnl size r5
dnl s2_limb r6
dnl The POWER architecture has no unsigned 32x32->64 bit multiplication
@@ -33,7 +33,7 @@ dnl has its most significant bit set, and we add the multiplier if the
dnl multiplicand has its most significant bit set. We need to preserve the
dnl carry flag between each iteration, so we have to compute the compensation
dnl carefully (the natural, srai+and doesn't work). Since all POWER can
-dnl branch in zero cycles, we use conditional branches to for the additions.
+dnl branch in zero cycles, we use conditional branches for the compensation.
include(`../config.m4')
diff --git a/mpn/power/submul_1.asm b/mpn/power/submul_1.asm
index 0c78ba512..3c3492d00 100644
--- a/mpn/power/submul_1.asm
+++ b/mpn/power/submul_1.asm
@@ -33,7 +33,7 @@ dnl has its most significant bit set, and we add the multiplier if the
dnl multiplicand has its most significant bit set. We need to preserve the
dnl carry flag between each iteration, so we have to compute the compensation
dnl carefully (the natural, srai+and doesn't work). Since all POWER can
-dnl branch in zero cycles, we use conditional branches to for the additions.
+dnl branch in zero cycles, we use conditional branches for the compensation.
include(`../config.m4')