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
125bcee0
Commit
125bcee0
authored
Mar 25, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(__modsi3, __umodsi3): Use mulsl instruction instead of __mulsi3
function call on the coldfire. From-SVN: r13793
parent
61b1bece
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/config/m68k/lb1sf68.asm
+8
-0
No files found.
gcc/config/m68k/lb1sf68.asm
View file @
125bcee0
...
...
@@ -444,10 +444,14 @@ SYM (__umodsi3):
jbsr
SYM
(
__udivsi3
)
addql
IMM
(
8
),
sp
movel
sp
@
(
8
),
d1
/*
d1
=
divisor
*/
#
ifndef
__mcf5200__
movel
d1
,
sp
@
-
movel
d0
,
sp
@
-
jbsr
SYM
(
__mulsi3
)
/*
d0
=
(
a
/
b
)
*
b
*/
addql
IMM
(
8
),
sp
#
else
mulsl
d1
,
d0
#
endif
movel
sp
@
(
4
),
d1
/*
d1
=
dividend
*/
subl
d0
,
d1
/*
d1
=
a
-
(
a
/
b
)
*
b
*/
movel
d1
,
d0
...
...
@@ -466,10 +470,14 @@ SYM (__modsi3):
jbsr
SYM
(
__divsi3
)
addql
IMM
(
8
),
sp
movel
sp
@
(
8
),
d1
/*
d1
=
divisor
*/
#
ifndef
__mcf5200__
movel
d1
,
sp
@
-
movel
d0
,
sp
@
-
jbsr
SYM
(
__mulsi3
)
/*
d0
=
(
a
/
b
)
*
b
*/
addql
IMM
(
8
),
sp
#
else
mulsl
d1
,
d0
#
endif
movel
sp
@
(
4
),
d1
/*
d1
=
dividend
*/
subl
d0
,
d1
/*
d1
=
a
-
(
a
/
b
)
*
b
*/
movel
d1
,
d0
...
...
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