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
5d77a50c
Commit
5d77a50c
authored
Sep 18, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a reload inheritance problem
From-SVN: r36497
parent
40fc375d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+5
-0
gcc/reload1.c
+4
-1
No files found.
gcc/ChangeLog
View file @
5d77a50c
2000-09-18 Bernd Schmidt <bernds@redhat.co.uk>
* reload1.c (forget_old_reloads_1): If a hard reg is stored, clear
its entry in spill_reg_store.
2000-09-18 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.c (sh_expand_prologue): Mark GOTaddr2picreg as
...
...
gcc/reload1.c
View file @
5d77a50c
...
...
@@ -4017,7 +4017,10 @@ forget_old_reloads_1 (x, ignored, data)
reload reg in the current instruction. */
if
(
n_reloads
==
0
||
!
TEST_HARD_REG_BIT
(
reg_is_output_reload
,
regno
+
i
))
CLEAR_HARD_REG_BIT
(
reg_reloaded_valid
,
regno
+
i
);
{
CLEAR_HARD_REG_BIT
(
reg_reloaded_valid
,
regno
+
i
);
spill_reg_store
[
regno
+
i
]
=
0
;
}
}
/* Since value of X has changed,
...
...
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