summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorgclarkii <gclarkii@FreeBSD.org>1994-04-29 20:52:06 +0000
committergclarkii <gclarkii@FreeBSD.org>1994-04-29 20:52:06 +0000
commit6fc7900329cb130d2d51279cc340f236cda81ffa (patch)
tree123bc7c9939019bf9efbae9c4af790b4eda7d162 /sys
parent7d65ba7abd961168c71d1da8283b18cadc86fdbb (diff)
downloadFreeBSD-src-6fc7900329cb130d2d51279cc340f236cda81ffa.zip
FreeBSD-src-6fc7900329cb130d2d51279cc340f236cda81ffa.tar.gz
Added commits to keep gcc quiet
Diffstat (limited to 'sys')
-rw-r--r--sys/gnu/i386/fpemul/poly_atan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/i386/fpemul/poly_atan.c b/sys/gnu/i386/fpemul/poly_atan.c
index 8cc98fa..618e567 100644
--- a/sys/gnu/i386/fpemul/poly_atan.c
+++ b/sys/gnu/i386/fpemul/poly_atan.c
@@ -173,7 +173,7 @@ poly_atan(FPU_REG * arg)
pos_poly.exp = EXP_BIAS;
/* Do the basic fixed point polynomial evaluation */
- polynomial(&pos_poly.sigl, (unsigned *) &argSqSq,
+ polynomial((u_int *) &pos_poly.sigl, (unsigned *) &argSqSq,
(unsigned short (*)[4]) oddplterms, HIPOWERop - 1);
mul64((long long *) (&argSq.sigl), (long long *) (&pos_poly.sigl),
(long long *) (&pos_poly.sigl));
@@ -183,7 +183,7 @@ poly_atan(FPU_REG * arg)
neg_poly.exp = EXP_BIAS;
/* Do the basic fixed point polynomial evaluation */
- polynomial(&neg_poly.sigl, (unsigned *) &argSqSq,
+ polynomial((u_int *) &neg_poly.sigl, (unsigned *) &argSqSq,
(unsigned short (*)[4]) oddnegterms, HIPOWERon - 1);
/* Subtract the mantissas */
OpenPOWER on IntegriCloud