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
44ccea40
Commit
44ccea40
authored
Mar 11, 1999
by
J"orn Rennecke
Committed by
Joern Rennecke
Mar 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* sh.md (mulsi3): End mul.l sequence with a no-op move.
From-SVN: r25699
parent
4f3ae93c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/config/sh/sh.md
+4
-1
No files found.
gcc/ChangeLog
View file @
44ccea40
Thu
Mar
11
17
:
28
:
32
1999
J
"orn Rennecke <amylaar@cygnus.co.uk>
* sh.md (mulsi3): End mul.l sequence with a no-op move.
Thu Mar 11 08:52:02 1999 Bruce Korb <korb@datadesign.com>
* Makefile.in: activated fixinc/mkfixinc.sh
* configure.in: activated fixinc/mkfixinc.sh
...
...
gcc/config/sh/sh.md
View file @
44ccea40
...
...
@@ -1113,7 +1113,10 @@
{
rtx macl = gen_rtx_REG (SImode, MACL_REG);
first = emit_insn (gen_mul_l (operands[1], operands[2]));
last = emit_insn (gen_movsi_i ((operands[0]), macl));
emit_insn (gen_movsi_i ((operands[0]), macl));
/* The sequence must end in a no-op move, lest cse puts macl in its
tables and does invalid substitutions. */
last = emit_insn (gen_movsi_i ((operands[0]), operands[0]));
}
/* Wrap the sequence in REG_LIBCALL / REG_RETVAL notes so that loop
invariant code motion can move it. */
...
...
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