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
0e544c37
Commit
0e544c37
authored
Aug 21, 2004
by
Mark Mitchell
Committed by
Mark Mitchell
Aug 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reload.c (find_reloads_address): Fix thinko in previous change.
From-SVN: r86345
parent
0da457fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/reload.c
+1
-2
No files found.
gcc/ChangeLog
View file @
0e544c37
2004-08-20 Mark Mitchell <mark@codesourcery.com>
* reload.c (find_reloads_address): Fix thinko in previous change.
* reload.c (find_reloads_address): Reload the sum of a LO_SUM and
a CONST_INT.
...
...
gcc/reload.c
View file @
0e544c37
...
...
@@ -4916,8 +4916,7 @@ find_reloads_address (enum machine_mode mode, rtx *memrefloc, rtx ad,
continue
;
operand
=
XEXP
(
XEXP
(
ad
,
0
),
op_index
);
if
(
!
(
REG_P
(
operand
)
||
REGNO
(
operand
)
<
FIRST_PSEUDO_REGISTER
))
if
(
!
REG_P
(
operand
)
||
REGNO
(
operand
)
>=
FIRST_PSEUDO_REGISTER
)
continue
;
if
((
REG_MODE_OK_FOR_BASE_P
(
operand
,
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