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
543624ee
Commit
543624ee
authored
Aug 04, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(movdf+2): Allow `f' register as source operand in
first alternative. From-SVN: r5070
parent
05b4c365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
12 deletions
+11
-12
gcc/config/clipper/clipper.md
+11
-12
No files found.
gcc/config/clipper/clipper.md
View file @
543624ee
...
@@ -203,22 +203,21 @@
...
@@ -203,22 +203,21 @@
(define_insn ""
(define_insn ""
[
(set (match_operand:DF 0 "memory_operand" "=o,m")
[
(set (match_operand:DF 0 "memory_operand" "=o,m")
(match_operand:DF 1 "register_operand" "r,f"))]
(match_operand:DF 1 "register_operand" "r
f
,f"))]
""
""
"
*
"
*
{
{
if (which_alternative == 0) /
* r -> o *
/
rtx xops
[
4
]
;
{
rtx xops
[
4
]
;
if (REGNO (operands
[
1
]
) >= 16) /
* f -> m *
/
xops
[
0
]
= operands
[
0
]
;
return
\"
stord %1,%0
\"
;
xops
[
1
]
= adj_offsettable_operand (operands
[
0
]
, 4);
xops
[
2
]
= operands
[
1
]
;
xops
[
3
]
= gen_rtx (REG, SImode, REGNO (operands
[
1
]
) + 1);
output_asm_insn (
\"
storw %2,%0
\;
storw %3,%1
\"
, xops);
return
\"\"
;
}
return
\"
stord %1,%0
\"
; /
* f-> m *
/
xops
[
0
]
= operands
[
0
]
; /
* r -> o *
/
xops
[
1
]
= adj_offsettable_operand (operands
[
0
]
, 4);
xops
[
2
]
= operands
[
1
]
;
xops
[
3
]
= gen_rtx (REG, SImode, REGNO (operands
[
1
]
) + 1);
output_asm_insn (
\"
storw %2,%0
\;
storw %3,%1
\"
, xops);
return
\"\"
;
}"
}"
[
(set_attr "type" "store,store")
[
(set_attr "type" "store,store")
(set_attr "cc" "clobber,unchanged")])
(set_attr "cc" "clobber,unchanged")])
...
...
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