diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-12 18:50:45 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-05-12 18:50:45 -0400 |
commit | c92d992a818973ef3395557f9bf5f2bd9a9ee598 (patch) | |
tree | 94e8f248e4389ead31091f404c338d5f9d8de48e /gcc/real.c | |
parent | c831a9204145422920ca301bc20eb329bc140a33 (diff) | |
download | gcc-c92d992a818973ef3395557f9bf5f2bd9a9ee598.zip gcc-c92d992a818973ef3395557f9bf5f2bd9a9ee598.tar.gz gcc-c92d992a818973ef3395557f9bf5f2bd9a9ee598.tar.bz2 |
(m16m): Change first arg to int; all callers changed.
From-SVN: r7285
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -352,7 +352,7 @@ static void eshup6 PROTO((unsigned EMUSHORT *)); static void eshdn6 PROTO((unsigned EMUSHORT *)); static void eaddm PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); static void esubm PROTO((unsigned EMUSHORT *, unsigned EMUSHORT *)); -static void m16m PROTO((unsigned short, unsigned short *, +static void m16m PROTO((unsigned int, unsigned short *, unsigned short *)); static int edivm PROTO((unsigned short *, unsigned short *)); static int emulm PROTO((unsigned short *, unsigned short *)); @@ -2066,7 +2066,7 @@ emulm (a, b) static void m16m (a, b, c) - unsigned short a; + unsigned int a; unsigned short b[], c[]; { register unsigned short *pp; @@ -2139,7 +2139,7 @@ edivm (den, num) else tquot = tnum / tdenm; /* Multiply denominator by trial quotient digit. */ - m16m (tquot, den, tprod); + m16m ((unsigned int)tquot, den, tprod); /* The quotient digit may have been overestimated. */ if (ecmpm (tprod, num) > 0) { @@ -2199,7 +2199,7 @@ emulm (a, b) } else { - m16m (*p--, b, pprod); + m16m ((unsigned int) *p--, b, pprod); eaddm(pprod, equot); } j |= *q; |