From e9453fbbc7fc9e3540cd427535895d2e9113e1b6 Mon Sep 17 00:00:00 2001 From: Gary Clark II Date: Fri, 29 Apr 1994 20:52:06 +0000 Subject: [PATCH] Added commits to keep gcc quiet --- sys/gnu/i386/fpemul/poly_atan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/gnu/i386/fpemul/poly_atan.c b/sys/gnu/i386/fpemul/poly_atan.c index 8cc98faf59a..618e5674a11 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 */