summaryrefslogtreecommitdiff
path: root/libc/soft-fp/op-1.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/soft-fp/op-1.h')
-rw-r--r--libc/soft-fp/op-1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/soft-fp/op-1.h b/libc/soft-fp/op-1.h
index 30e60638c..8e05e2fab 100644
--- a/libc/soft-fp/op-1.h
+++ b/libc/soft-fp/op-1.h
@@ -233,7 +233,7 @@ do { \
_nl = X##_f << (_FP_W_TYPE_SIZE - 1); \
_nh = X##_f >> 1; \
} \
- \
+ \
udiv_qrnnd(_q, _r, _nh, _nl, _y); \
R##_f = _q | (_r != 0); \
} while (0)
@@ -255,14 +255,14 @@ do { \
udiv_qrnnd(_q, _r, _nh, _nl, Y##_f); \
R##_f = _q | (_r != 0); \
} while (0)
-
-
+
+
/*
* Square root algorithms:
* We have just one right now, maybe Newton approximation
* should be added for those machines where division is fast.
*/
-
+
#define _FP_SQRT_MEAT_1(R, S, T, X, q) \
do { \
while (q != _FP_WORK_ROUND) \
@@ -286,7 +286,7 @@ do { \
} while (0)
/*
- * Assembly/disassembly for converting to/from integral types.
+ * Assembly/disassembly for converting to/from integral types.
* No shifting or overflow handled here.
*/