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
bf8b4985
Commit
bf8b4985
authored
Apr 15, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(max_label_num_after_reload): New variable.
(rest_of_compilation): Set it. From-SVN: r11777
parent
63eac4d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/toplev.c
+8
-0
No files found.
gcc/toplev.c
View file @
bf8b4985
...
...
@@ -272,6 +272,10 @@ void (*incomplete_decl_finalize_hook) () = 0;
void
(
*
interim_eh_hook
)
PROTO
((
tree
));
/* Highest label number used at the end of reload. */
int
max_label_num_after_reload
;
/* Nonzero if generating code to do profiling. */
int
profile_flag
=
0
;
...
...
@@ -3112,6 +3116,10 @@ rest_of_compilation (decl)
fprintf
(
global_reg_dump_file
,
"
\n
;; Function %s
\n\n
"
,
IDENTIFIER_POINTER
(
DECL_NAME
(
decl
))));
/* Save the last label number used so far, so reorg can tell
when it's safe to kill spill regs. */
max_label_num_after_reload
=
max_label_num
();
/* Unless we did stupid register allocation,
allocate remaining pseudo-regs, then do the reload pass
fixing up any insns that are invalid. */
...
...
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