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
ab40ad2b
Commit
ab40ad2b
authored
Jun 22, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1231
parent
4d06f145
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
gcc/global.c
+6
-3
gcc/toplev.c
+8
-4
No files found.
gcc/global.c
View file @
ab40ad2b
...
...
@@ -262,9 +262,12 @@ static void set_preference ();
/* Perform allocation of pseudo-registers not allocated by local_alloc.
FILE is a file to output debugging information on,
or zero if such output is not desired.
*/
or zero if such output is not desired.
void
Return value is nonzero if reload failed
and we must not do any more for this function. */
int
global_alloc
(
file
)
FILE
*
file
;
{
...
...
@@ -543,7 +546,7 @@ global_alloc (file)
for the sake of debugging information. */
if (n_basic_blocks > 0)
#endif
reload
(
get_insns
(),
1
,
file
);
re
turn
re
load
(
get_insns
(),
1
,
file
);
}
/* Sort predicate for ordering the allocnos.
...
...
gcc/toplev.c
View file @
ab40ad2b
...
...
@@ -1977,6 +1977,7 @@ rest_of_compilation (decl)
to be restored after we finish compiling the function
(for use when compiling inline calls to this function). */
tree
saved_block_tree
=
0
;
int
failure
=
0
;
/* If we are reconsidering an inline function
at the end of compilation, skip the stuff for making it inline. */
...
...
@@ -2343,10 +2344,10 @@ rest_of_compilation (decl)
TIMEVAR
(
global_alloc_time
,
{
if
(
!
obey_regdecls
)
global_alloc
(
global_reg_dump
?
global_reg_dump_file
:
0
);
failure
=
global_alloc
(
global_reg_dump
?
global_reg_dump_file
:
0
);
else
reload
(
insns
,
0
,
global_reg_dump
?
global_reg_dump_file
:
0
);
failure
=
reload
(
insns
,
0
,
global_reg_dump
?
global_reg_dump_file
:
0
);
});
if
(
global_reg_dump
)
...
...
@@ -2357,6 +2358,9 @@ rest_of_compilation (decl)
fflush
(
global_reg_dump_file
);
});
if
(
failure
)
goto
exit_rest_of_compilation
;
reload_completed
=
1
;
if
(
optimize
>
0
&&
flag_schedule_insns_after_reload
)
...
...
@@ -2386,7 +2390,7 @@ rest_of_compilation (decl)
#ifdef LEAF_REGISTERS
leaf_function
=
0
;
if
(
optimize
>
0
&&
only_leaf_regs_used
()
&&
leaf_function_p
())
leaf_function
=
1
;
leaf_function
=
1
;
#endif
/* One more attempt to remove jumps to .+1
...
...
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