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
ce13d15f
Commit
ce13d15f
authored
Oct 19, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(__udiv_w_sdiv): If we don't have sdiv_qrnnd, define dummy variant of
__udiv_w_sdiv. From-SVN: r10476
parent
932d1119
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/libgcc2.c
+8
-0
No files found.
gcc/libgcc2.c
View file @
ce13d15f
...
@@ -291,6 +291,7 @@ __muldi3 (u, v)
...
@@ -291,6 +291,7 @@ __muldi3 (u, v)
#endif
#endif
#ifdef L_udiv_w_sdiv
#ifdef L_udiv_w_sdiv
#if defined (sdiv_qrnnd)
USItype
USItype
__udiv_w_sdiv
(
rp
,
a1
,
a0
,
d
)
__udiv_w_sdiv
(
rp
,
a1
,
a0
,
d
)
USItype
*
rp
,
a1
,
a0
,
d
;
USItype
*
rp
,
a1
,
a0
,
d
;
...
@@ -388,6 +389,13 @@ __udiv_w_sdiv (rp, a1, a0, d)
...
@@ -388,6 +389,13 @@ __udiv_w_sdiv (rp, a1, a0, d)
*
rp
=
r
;
*
rp
=
r
;
return
q
;
return
q
;
}
}
#else
/* If sdiv_qrnnd doesn't exist, define dummy __udiv_w_sdiv. */
USItype
__udiv_w_sdiv
(
rp
,
a1
,
a0
,
d
)
USItype
*
rp
,
a1
,
a0
,
d
;
{}
#endif
#endif
#endif
#if (defined (L_udivdi3) || defined (L_divdi3) || \
#if (defined (L_udivdi3) || defined (L_divdi3) || \
...
...
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