diff options
| author | Gary Clark II <gclarkii@FreeBSD.org> | 1994-04-29 20:58:52 +0000 |
|---|---|---|
| committer | Gary Clark II <gclarkii@FreeBSD.org> | 1994-04-29 20:58:52 +0000 |
| commit | 8459b90f62d57e4813182de67754449f3db2a164 (patch) | |
| tree | 216a072e897b01d885cc8506810097dba4e6f76e /sys/gnu | |
| parent | e9453fbbc7fc9e3540cd427535895d2e9113e1b6 (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/i386/fpemul/poly_l2.c | 2 | ||||
| -rw-r--r-- | sys/gnu/i386/fpemul/poly_sin.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/gnu/i386/fpemul/poly_l2.c b/sys/gnu/i386/fpemul/poly_l2.c index fbb1ab09a55f..b1f5f86b9ea4 100644 --- a/sys/gnu/i386/fpemul/poly_l2.c +++ b/sys/gnu/i386/fpemul/poly_l2.c @@ -283,7 +283,7 @@ poly_l2p1(FPU_REG * arg, FPU_REG * result) poly_div16(&Xsq); /* Do the basic fixed point polynomial evaluation */ - polynomial(&(accum.sigl), (unsigned *) &Xsq, lterms, HIPOWER - 1); + polynomial((u_int *) &accum.sigl), (unsigned *) &Xsq, lterms, HIPOWER - 1); accum.tag = TW_Valid; /* set the tags to Valid */ accum.sign = SIGN_POS; /* and make accum positive */ diff --git a/sys/gnu/i386/fpemul/poly_sin.c b/sys/gnu/i386/fpemul/poly_sin.c index 6c5d04a98e9c..625f0b5e1960 100644 --- a/sys/gnu/i386/fpemul/poly_sin.c +++ b/sys/gnu/i386/fpemul/poly_sin.c @@ -125,14 +125,14 @@ poly_sine(FPU_REG * arg, FPU_REG * result) accum.exp = 0; /* Do the basic fixed point polynomial evaluation */ - polynomial(&(accum.sigl), &(Xx4.sigl), lterms, HIPOWER - 1); + polynomial((u_int *) &(accum.sigl), &(Xx4.sigl), lterms, HIPOWER - 1); /* will be a valid positive nr with expon = 0 */ *(short *) &(negaccum.sign) = 0; negaccum.exp = 0; /* Do the basic fixed point polynomial evaluation */ - polynomial(&(negaccum.sigl), &(Xx4.sigl), negterms, HIPOWER - 1); + polynomial((u_int *) &(negaccum.sigl), &(Xx4.sigl), negterms, HIPOWER - 1); mul64((long long *) &(Xx2.sigl), (long long *) &(negaccum.sigl), (long long *) &(negaccum.sigl)); |
