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
a17a104c
Commit
a17a104c
authored
May 06, 2002
by
Catherine Moore
Committed by
Catherine Moore
May 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(compute_register_save_size): Make sure
to count all of the registers that will be saved. From-SVN: r53226
parent
7799175f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
gcc/ChangeLog
+5
-0
gcc/config/v850/v850.c
+3
-6
No files found.
gcc/ChangeLog
View file @
a17a104c
2002-05-06 Catherine Moore <clm@redhat.com>
* config/v850/v850.c (compute_register_save_size): Make sure
to count all of the registers that will be saved.
Mon May 6 18:03:11 CEST 2002 Jan Hubicka <jh@suse.cz>
Mon May 6 18:03:11 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.c (q_regs_operand): Use ANY_QI_REGS_P.
* i386.c (q_regs_operand): Use ANY_QI_REGS_P.
...
...
gcc/config/v850/v850.c
View file @
a17a104c
...
@@ -1442,14 +1442,11 @@ compute_register_save_size (p_reg_saved)
...
@@ -1442,14 +1442,11 @@ compute_register_save_size (p_reg_saved)
need to cover the possibility that such a helper function will
need to cover the possibility that such a helper function will
be used, despite the fact that there might be gaps in the list of
be used, despite the fact that there might be gaps in the list of
registers that need to be saved. To detect this we note that the
registers that need to be saved. To detect this we note that the
helper functions always push at least register r29 if the link
helper functions always push at least register r29 (provided
register is not used, and at least registers r27 - r31 if the
that the function is not an interrupt handler). */
link register is used (and provided that the function is not an
interrupt handler). */
if
(
TARGET_PROLOG_FUNCTION
if
(
TARGET_PROLOG_FUNCTION
&&
(
i
==
2
||
i
>=
20
)
&&
(
i
==
2
||
((
i
>=
20
)
&&
(
i
<
30
))))
&&
regs_ever_live
[
LINK_POINTER_REGNUM
]
?
(
i
<
28
)
:
(
i
<
30
))
{
{
if
(
i
==
2
)
if
(
i
==
2
)
{
{
...
...
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