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
60dd1b7b
Commit
60dd1b7b
authored
Jul 28, 2000
by
Aldy Hernandez
Committed by
Aldy Hernandez
Jul 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed constraints in expander.
split =rf constraints into =r,f From-SVN: r35318
parent
69fe169e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
11 deletions
+20
-11
gcc/ChangeLog
+9
-0
gcc/config/arm/arm.md
+11
-11
No files found.
gcc/ChangeLog
View file @
60dd1b7b
2000-07-27 Aldy Hernandez <aldyh@redhat.com>
* config/arm/arm.md ("call_value"): removed constraints.
Constraints are ignored in expanders.
(*call_value_reg): split =rf into various constraints.
(*call_value_mem): same
(*call_value_symbol): same
(*sibcall_value_insn): same
2000-07-28 Philipp Thomas <pthomas@suse.de>
* install.texi (--enable-nls): Change the description of the NLS
...
...
gcc/config/arm/arm.md
View file @
60dd1b7b
...
...
@@ -5936,9 +5936,9 @@
)
(define_expand "call_value"
[
(parallel
[
(set (match_operand 0 "" "
=rf
")
(call (match_operand 1 "memory_operand" "
m
")
(match_operand 2 "general_operand" "
g
")))
[
(parallel
[
(set (match_operand 0 "" "")
(call (match_operand 1 "memory_operand" "")
(match_operand 2 "general_operand" "")))
(use (match_operand 3 "" ""))
(clobber (reg:SI 14))])]
"TARGET_EITHER"
...
...
@@ -5958,8 +5958,8 @@
)
(define_insn "
*
call_value_reg"
[
(set (match_operand 0 "" "=rf")
(call (mem:SI (match_operand:SI 1 "s_register_operand" "r"))
[
(set (match_operand 0 "" "=r
,
f")
(call (mem:SI (match_operand:SI 1 "s_register_operand" "r
,r
"))
(match_operand 2 "" "")))
(use (match_operand 3 "" ""))
(clobber (reg:SI 14))]
...
...
@@ -5972,8 +5972,8 @@
)
(define_insn "
*
call_value_mem"
[
(set (match_operand 0 "" "=rf")
(call (mem:SI (match_operand:SI 1 "memory_operand" "m"))
[
(set (match_operand 0 "" "=r
,
f")
(call (mem:SI (match_operand:SI 1 "memory_operand" "m
,m
"))
(match_operand 2 "" "")))
(use (match_operand 3 "" ""))
(clobber (reg:SI 14))]
...
...
@@ -6004,8 +6004,8 @@
)
(define_insn "
*
call_value_symbol"
[
(set (match_operand 0 "s_register_operand" "=rf")
(call (mem:SI (match_operand:SI 1 "" "X"))
[
(set (match_operand 0 "s_register_operand" "=r
,
f")
(call (mem:SI (match_operand:SI 1 "" "X
,X
"))
(match_operand:SI 2 "" "")))
(use (match_operand 3 "" ""))
(clobber (reg:SI 14))]
...
...
@@ -6099,8 +6099,8 @@
)
(define_insn "
*
sibcall_value_insn"
[
(set (match_operand 0 "s_register_operand" "=rf")
(call (mem:SI (match_operand:SI 1 "" "X"))
[
(set (match_operand 0 "s_register_operand" "=r
,
f")
(call (mem:SI (match_operand:SI 1 "" "X
,X
"))
(match_operand 2 "" "")))
(use (match_operand 3 "" ""))]
"TARGET_ARM && GET_CODE (operands
[
1
]
) == SYMBOL_REF"
...
...
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