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
ce701d1b
Commit
ce701d1b
authored
Sep 08, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Sep 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix computation of need_mode in choose_reload_regs.
From-SVN: r36264
parent
82be40f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+2
-0
gcc/reload1.c
+7
-2
No files found.
gcc/ChangeLog
View file @
ce701d1b
...
...
@@ -2,6 +2,8 @@
* combine.c (combine_simplify_rtx): Try to simplify VEC_SELECT of a
VEC_CONCAT.
From Richard Henderson:
* reload1.c (choose_reload_regs): Compute need_mode properly.
2000-09-07 Richard Henderson <rth@cygnus.com>
...
...
gcc/reload1.c
View file @
ce701d1b
...
...
@@ -5304,8 +5304,13 @@ choose_reload_regs (chain)
i
=
REGNO
(
last_reg
)
+
word
;
last_class
=
REGNO_REG_CLASS
(
i
);
need_mode
=
smallest_mode_for_size
((
word
+
1
)
*
UNITS_PER_WORD
,
GET_MODE_CLASS
(
mode
));
if
(
word
==
0
)
need_mode
=
mode
;
else
need_mode
=
smallest_mode_for_size
(
GET_MODE_SIZE
(
mode
)
+
word
*
UNITS_PER_WORD
,
GET_MODE_CLASS
(
mode
));
if
(
#ifdef CLASS_CANNOT_CHANGE_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