summaryrefslogtreecommitdiff
path: root/mpn/power
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2002-03-28 19:03:36 +0100
committertege <tege@gmplib.org>2002-03-28 19:03:36 +0100
commit4fd42f5912536db433821fc6ec02d97583632e12 (patch)
treeb3d32b35511111ad9b66a53dc36a738a04651404 /mpn/power
parentc45465388279cfffa383ea323b46b9ff0115d1ec (diff)
downloadgmp-4fd42f5912536db433821fc6ec02d97583632e12.tar.gz
Fix some spacing.
Diffstat (limited to 'mpn/power')
-rw-r--r--mpn/power/add_n.asm8
-rw-r--r--mpn/power/lshift.asm2
-rw-r--r--mpn/power/rshift.asm2
-rw-r--r--mpn/power/sub_n.asm8
4 files changed, 10 insertions, 10 deletions
diff --git a/mpn/power/add_n.asm b/mpn/power/add_n.asm
index ef0d53080..8362d0287 100644
--- a/mpn/power/add_n.asm
+++ b/mpn/power/add_n.asm
@@ -59,16 +59,16 @@ Leven: lu 9,4(4) C load s1 limb and update s1_ptr
Loop: lu 8,4(4) C load s1 limb and update s1_ptr
lu 0,4(5) C load s2 limb and update s2_ptr
ae 11,10,9 C add previous limbs with cy, set cy
- stu 7,4(3) C
+ stu 7,4(3) C
lu 9,4(4) C load s1 limb and update s1_ptr
lu 10,4(5) C load s2 limb and update s2_ptr
ae 7,0,8 C add previous limbs with cy, set cy
- stu 11,4(3) C
+ stu 11,4(3) C
bdn Loop C decrement CTR and loop back
Lend: ae 11,10,9 C add limbs with cy, set cy
- st 7,4(3) C
- st 11,8(3) C
+ st 7,4(3) C
+ st 11,8(3) C
lil 3,0 C load cy into ...
aze 3,3 C ... return value register
br
diff --git a/mpn/power/lshift.asm b/mpn/power/lshift.asm
index c5358ff0f..8feef03d1 100644
--- a/mpn/power/lshift.asm
+++ b/mpn/power/lshift.asm
@@ -47,6 +47,6 @@ Loop: lu 0,-4(4) C load next lower limb
bdn Loop C loop back until CTR is zero
Lend: stu 7,-4(9) C store 2:nd least significant limb
Lend2: sle 7,0,6 C compute least significant limb
- st 7,-4(9) C store it
+ st 7,-4(9) C store it
br
EPILOGUE(mpn_lshift)
diff --git a/mpn/power/rshift.asm b/mpn/power/rshift.asm
index 2b8c07d0e..e48704a22 100644
--- a/mpn/power/rshift.asm
+++ b/mpn/power/rshift.asm
@@ -45,6 +45,6 @@ Loop: lu 0,4(4) C load next higher limb
bdn Loop C loop back until CTR is zero
Lend: stu 7,4(9) C store 2:nd most significant limb
Lend2: sre 7,0,6 C compute most significant limb
- st 7,4(9) C store it
+ st 7,4(9) C store it
br
EPILOGUE(mpn_rshift)
diff --git a/mpn/power/sub_n.asm b/mpn/power/sub_n.asm
index e4e9892db..235e49bf9 100644
--- a/mpn/power/sub_n.asm
+++ b/mpn/power/sub_n.asm
@@ -61,16 +61,16 @@ Leven: lu 9,4(4) C load s1 limb and update s1_ptr
Loop: lu 8,4(4) C load s1 limb and update s1_ptr
lu 0,4(5) C load s2 limb and update s2_ptr
sfe 11,10,9 C subtract previous limbs with cy, set cy
- stu 7,4(3) C
+ stu 7,4(3) C
lu 9,4(4) C load s1 limb and update s1_ptr
lu 10,4(5) C load s2 limb and update s2_ptr
sfe 7,0,8 C subtract previous limbs with cy, set cy
- stu 11,4(3) C
+ stu 11,4(3) C
bdn Loop C decrement CTR and loop back
Lend: sfe 11,10,9 C subtract limbs with cy, set cy
- st 7,4(3) C
- st 11,8(3) C
+ st 7,4(3) C
+ st 11,8(3) C
sfe 3,0,0 C load !cy into ...
sfi 3,3,0 C ... return value register
br