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
a322288b
Commit
a322288b
authored
Feb 04, 2004
by
Ulrich Weigand
Committed by
Ulrich Weigand
Feb 04, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
From-SVN: r77277
parent
859b9c1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/config/s390/s390.c
+2
-4
No files found.
gcc/ChangeLog
View file @
a322288b
2004-02-04 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
2004-02-04 David Edelsohn <edelsohn@gnu.org>
* reload.c (refers_to_regno_for_reload_p): Test regno, not inner_regno,
...
...
gcc/config/s390/s390.c
View file @
a322288b
...
...
@@ -6677,12 +6677,10 @@ s390_trampoline_template (FILE *file)
void
s390_initialize_trampoline
(
rtx
addr
,
rtx
fnaddr
,
rtx
cxt
)
{
emit_move_insn
(
gen_rtx
(
MEM
,
Pmode
,
emit_move_insn
(
gen_rtx_MEM
(
Pmode
,
memory_address
(
Pmode
,
plus_constant
(
addr
,
(
TARGET_64BIT
?
20
:
12
)
))),
cxt
);
emit_move_insn
(
gen_rtx
(
MEM
,
Pmode
,
emit_move_insn
(
gen_rtx_MEM
(
Pmode
,
memory_address
(
Pmode
,
plus_constant
(
addr
,
(
TARGET_64BIT
?
28
:
16
)
))),
fnaddr
);
}
...
...
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