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
7ed7f009
Commit
7ed7f009
authored
Nov 24, 2003
by
Kazu Hirata
Committed by
Kazu Hirata
Nov 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/h8300/h8300.md: Remove constraints from expanders.
From-SVN: r73880
parent
bc02597b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/config/h8300/h8300.md
+6
-6
No files found.
gcc/ChangeLog
View file @
7ed7f009
2003-11-24 Kazu Hirata <kazu@cs.umass.edu>
2003-11-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md: Remove constraints from expanders.
2003-11-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md: (stm_h8300s_2): Change the name to
* config/h8300/h8300.md: (stm_h8300s_2): Change the name to
stm_h8300s_2_advanced.
stm_h8300s_2_advanced.
(stm_h8300s_2_normal): New.
(stm_h8300s_2_normal): New.
...
...
gcc/config/h8300/h8300.md
View file @
7ed7f009
...
@@ -1862,37 +1862,37 @@
...
@@ -1862,37 +1862,37 @@
(define_expand "push_h8300"
(define_expand "push_h8300"
[
(set (mem:HI (pre_dec:HI (reg:HI SP_REG)))
[
(set (mem:HI (pre_dec:HI (reg:HI SP_REG)))
(match_operand:HI 0 "register_operand" "
=r
"))]
(match_operand:HI 0 "register_operand" ""))]
"TARGET_H8300"
"TARGET_H8300"
"")
"")
(define_expand "push_h8300hs"
(define_expand "push_h8300hs"
[
(set (mem:SI (pre_dec:SI (reg:SI SP_REG)))
[
(set (mem:SI (pre_dec:SI (reg:SI SP_REG)))
(match_operand:SI 0 "register_operand" "
=r
"))]
(match_operand:SI 0 "register_operand" ""))]
"TARGET_H8300H && TARGET_H8300S"
"TARGET_H8300H && TARGET_H8300S"
"")
"")
(define_expand "push_h8300hs_normal"
(define_expand "push_h8300hs_normal"
[
(set (mem:SI (pre_dec:HI (reg:HI SP_REG)))
[
(set (mem:SI (pre_dec:HI (reg:HI SP_REG)))
(match_operand:SI 0 "register_operand" "
=r
"))]
(match_operand:SI 0 "register_operand" ""))]
"TARGET_NORMAL_MODE"
"TARGET_NORMAL_MODE"
"")
"")
(define_expand "pop_h8300"
(define_expand "pop_h8300"
[
(set (match_operand:HI 0 "register_operand" "
=r
")
[
(set (match_operand:HI 0 "register_operand" "")
(mem:HI (post_inc:HI (reg:HI SP_REG))))]
(mem:HI (post_inc:HI (reg:HI SP_REG))))]
"TARGET_H8300"
"TARGET_H8300"
"")
"")
(define_expand "pop_h8300hs"
(define_expand "pop_h8300hs"
[
(set (match_operand:SI 0 "register_operand" "
=r
")
[
(set (match_operand:SI 0 "register_operand" "")
(mem:SI (post_inc:SI (reg:SI SP_REG))))]
(mem:SI (post_inc:SI (reg:SI SP_REG))))]
"TARGET_H8300H && TARGET_H8300S"
"TARGET_H8300H && TARGET_H8300S"
"")
"")
(define_expand "pop_h8300hs_normal"
(define_expand "pop_h8300hs_normal"
[
(set (match_operand:SI 0 "register_operand" "
=r
")
[
(set (match_operand:SI 0 "register_operand" "")
(mem:SI (post_inc:HI (reg:HI SP_REG))))]
(mem:SI (post_inc:HI (reg:HI SP_REG))))]
"TARGET_NORMAL_MODE"
"TARGET_NORMAL_MODE"
"")
"")
...
...
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