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
c1f04022
Commit
c1f04022
authored
Mar 26, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prototypes for static functions.
(choose_hard_reg_mode): Add missing parameters declaration. From-SVN: r3886
parent
5aa58c13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
gcc/caller-save.c
+7
-4
No files found.
gcc/caller-save.c
View file @
c1f04022
...
...
@@ -69,10 +69,12 @@ static HARD_REG_SET hard_regs_need_restore;
int
n_regs_saved
;
static
void
set_reg_live
();
static
void
clear_reg_live
();
static
void
restore_referenced_regs
();
static
int
insert_save_restore
();
static
enum
machine_mode
choose_hard_reg_mode
PROTO
((
int
,
int
));
static
void
set_reg_live
PROTO
((
rtx
,
rtx
));
static
void
clear_reg_live
PROTO
((
rtx
));
static
void
restore_referenced_regs
PROTO
((
rtx
,
rtx
,
enum
machine_mode
));
static
int
insert_save_restore
PROTO
((
rtx
,
int
,
int
,
enum
machine_mode
,
int
));
/* Return a machine mode that is legitimate for hard reg REGNO and large
enough to save nregs. If we can't find one, return VOIDmode. */
...
...
@@ -80,6 +82,7 @@ static int insert_save_restore ();
static
enum
machine_mode
choose_hard_reg_mode
(
regno
,
nregs
)
int
regno
;
int
nregs
;
{
enum
machine_mode
found_mode
=
VOIDmode
,
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