summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-12-09 20:24:26 +0000
committerRoland McGrath <roland@gnu.org>1994-12-09 20:24:26 +0000
commitfd8b1148fb27cf9e44d51c887dc1e3f39d49254d (patch)
tree72a6feda08e36480415608352d408a00806bd239
parent61123c839c60d1a68ddc74cd60b87cb4e2df65a1 (diff)
Include <sysdep.h> instead of <regdef.h>.
Use C comments instead of ! comments.
-rw-r--r--sysdeps/alpha/divrem.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/alpha/divrem.m4 b/sysdeps/alpha/divrem.m4
index ab86128a16..5942cf447f 100644
--- a/sysdeps/alpha/divrem.m4
+++ b/sysdeps/alpha/divrem.m4
@@ -12,31 +12,31 @@
/* We do not handle div by zero yet. */
#include <machine/pal.h>
#endif
-#include <regdef.h>
+#include <sysdep.h>
define(path, `SYSDEP_DIR/macros.m4')dnl
include(path)
FUNC__(OP)
- ! First set up the dividend.
+ /* First set up the dividend. */
EXTEND(t10)
stq t10,0(sp)
ldt $f10,0(sp)
cvtqt $f10,$f10
ADJQU($f10)
- ! Then set up the divisor.
+ /* Then set up the divisor. */
EXTEND(t11)
stq t11,0(sp)
ldt $f1,0(sp)
cvtqt $f1,$f1
ADJQU($f1)
- ! Do the division.
+ /* Do the division. */
divt $f10,$f1,$f10
cvttqc $f10,$f10
- ! Put the result in t12.
+ /* Put the result in t12. */
stt $f10,0(sp)
ldq t12,0(sp)
FULLEXTEND(t12)