aboutsummaryrefslogtreecommitdiffstats
path: root/mpi
diff options
context:
space:
mode:
Diffstat (limited to 'mpi')
-rw-r--r--mpi/ChangeLog5
-rw-r--r--mpi/power/mpih-add1.S3
-rw-r--r--mpi/power/mpih-lshift.S3
-rw-r--r--mpi/power/mpih-mul1.S2
-rw-r--r--mpi/power/mpih-mul2.S3
-rw-r--r--mpi/power/mpih-mul3.S3
-rw-r--r--mpi/power/mpih-rshift.S3
-rw-r--r--mpi/power/mpih-sub1.S3
8 files changed, 19 insertions, 6 deletions
diff --git a/mpi/ChangeLog b/mpi/ChangeLog
index 48e49d5cb..80b2d8de5 100644
--- a/mpi/ChangeLog
+++ b/mpi/ChangeLog
@@ -1,3 +1,8 @@
+Sun Dec 19 15:22:26 CET 1999 Werner Koch <[email protected]>
+
+ * power/ : Converted more comments to C comments because some AS
+ complain about ' in comments.
+
Thu Dec 16 10:07:58 CET 1999 Werner Koch <[email protected]>
* Makefile.am: c/SFLAGS/ASFLAGS/. This has only been used by the
diff --git a/mpi/power/mpih-add1.S b/mpi/power/mpih-add1.S
index f7918c6e7..ad27f3d81 100644
--- a/mpi/power/mpih-add1.S
+++ b/mpi/power/mpih-add1.S
@@ -22,12 +22,13 @@
#include "sysdep.h"
#include "asm-syntax.h"
-
+/*
# INPUT PARAMETERS
# res_ptr r3
# s1_ptr r4
# s2_ptr r5
# size r6
+ */
.toc
.extern mpihelp_add_n[DS]
diff --git a/mpi/power/mpih-lshift.S b/mpi/power/mpih-lshift.S
index c01b0fcda..5c53a0ae6 100644
--- a/mpi/power/mpih-lshift.S
+++ b/mpi/power/mpih-lshift.S
@@ -22,12 +22,13 @@
#include "sysdep.h"
#include "asm-syntax.h"
-
+/*
# INPUT PARAMETERS
# res_ptr r3
# s_ptr r4
# size r5
# cnt r6
+ */
.toc
.extern mpihelp_lshift[DS]
diff --git a/mpi/power/mpih-mul1.S b/mpi/power/mpih-mul1.S
index 6d1f1910a..3b71b5aa9 100644
--- a/mpi/power/mpih-mul1.S
+++ b/mpi/power/mpih-mul1.S
@@ -23,6 +23,7 @@
#include "sysdep.h"
#include "asm-syntax.h"
+/*
# INPUT PARAMETERS
# res_ptr r3
# s1_ptr r4
@@ -38,6 +39,7 @@
# iteration, so we have to compute the compensation carefully (the natural,
# srai+and doesn't work). Since the POWER architecture has a branch unit
# we can branch in zero cycles, so that's how we perform the additions.
+ */
.toc
.csect .mpihelp_mul_1[PR]
diff --git a/mpi/power/mpih-mul2.S b/mpi/power/mpih-mul2.S
index 6e4ae6f81..19ddee86d 100644
--- a/mpi/power/mpih-mul2.S
+++ b/mpi/power/mpih-mul2.S
@@ -25,7 +25,7 @@
-
+/*
# INPUT PARAMETERS
# res_ptr r3
# s1_ptr r4
@@ -41,6 +41,7 @@
# iteration, so we have to compute the compensation carefully (the natural,
# srai+and doesn't work). Since the POWER architecture has a branch unit
# we can branch in zero cycles, so that's how we perform the additions.
+ */
.toc
.csect .mpihelp_addmul_1[PR]
diff --git a/mpi/power/mpih-mul3.S b/mpi/power/mpih-mul3.S
index 8860c50e5..e875e88ea 100644
--- a/mpi/power/mpih-mul3.S
+++ b/mpi/power/mpih-mul3.S
@@ -24,7 +24,7 @@
#include "asm-syntax.h"
-
+/*
# INPUT PARAMETERS
# res_ptr r3
@@ -41,6 +41,7 @@
# iteration, so we have to compute the compensation carefully (the natural,
# srai+and doesn't work). Since the POWER architecture has a branch unit
# we can branch in zero cycles, so that's how we perform the additions.
+ */
.toc
.csect .mpihelp_submul_1[PR]
diff --git a/mpi/power/mpih-rshift.S b/mpi/power/mpih-rshift.S
index d78d00d15..e29645072 100644
--- a/mpi/power/mpih-rshift.S
+++ b/mpi/power/mpih-rshift.S
@@ -23,12 +23,13 @@
#include "asm-syntax.h"
-
+/*
# INPUT PARAMETERS
# res_ptr r3
# s_ptr r4
# size r5
# cnt r6
+*/
.toc
.extern mpihelp_rshift[DS]
diff --git a/mpi/power/mpih-sub1.S b/mpi/power/mpih-sub1.S
index 2de8af2fa..a3605533e 100644
--- a/mpi/power/mpih-sub1.S
+++ b/mpi/power/mpih-sub1.S
@@ -22,12 +22,13 @@
#include "sysdep.h"
#include "asm-syntax.h"
-
+/*
# INPUT PARAMETERS
# res_ptr r3
# s1_ptr r4
# s2_ptr r5
# size r6
+ */
.toc
.extern mpihelp_sub_n[DS]