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
284280b5
Commit
284280b5
authored
Jul 14, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Jul 14, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mn10300.md (mulsi): Turn into expander + pattern.
From-SVN: r21143
parent
e0e6c0aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+2
-0
gcc/config/mn10300/mn10300.md
+8
-1
No files found.
gcc/ChangeLog
View file @
284280b5
...
@@ -6,6 +6,8 @@ Tue Jul 14 14:15:30 1998 Nick Clifton <nickc@cygnus.com>
...
@@ -6,6 +6,8 @@ Tue Jul 14 14:15:30 1998 Nick Clifton <nickc@cygnus.com>
Tue Jul 14 14:46:08 1998 Jeffrey A Law (law@cygnus.com)
Tue Jul 14 14:46:08 1998 Jeffrey A Law (law@cygnus.com)
* mn10300.md (mulsi): Turn into expander + pattern.
* mn10300.md (movsi, movsf, movdi, movdf): Remove "x" from I -> a
* mn10300.md (movsi, movsf, movdi, movdf): Remove "x" from I -> a
alternative.
alternative.
...
...
gcc/config/mn10300/mn10300.md
View file @
284280b5
...
@@ -758,7 +758,14 @@
...
@@ -758,7 +758,14 @@
;; MULTIPLY INSTRUCTIONS
;; MULTIPLY INSTRUCTIONS
;; ----------------------------------------------------------------------
;; ----------------------------------------------------------------------
(define_insn "mulsi3"
(define_expand "mulsi3"
[
(set (match_operand:SI 0 "register_operand" "")
(mult:SI (match_operand:SI 1 "register_operand" "")
(match_operand:SI 2 "register_operand" "")))]
""
"")
(define_insn ""
[
(set (match_operand:SI 0 "register_operand" "=dx")
[
(set (match_operand:SI 0 "register_operand" "=dx")
(mult:SI (match_operand:SI 1 "register_operand" "%0")
(mult:SI (match_operand:SI 1 "register_operand" "%0")
(match_operand:SI 2 "register_operand" "dx")))]
(match_operand:SI 2 "register_operand" "dx")))]
...
...
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