Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c92d992a
Commit
c92d992a
authored
May 12, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(m16m): Change first arg to int; all callers changed.
From-SVN: r7285
parent
c831a920
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/real.c
+4
-4
No files found.
gcc/real.c
View file @
c92d992a
...
...
@@ -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
shor
t
,
unsigned
short
*
,
static
void
m16m
PROTO
((
unsigned
in
t
,
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
shor
t
a
;
unsigned
in
t
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment