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
9e9b48a4
Commit
9e9b48a4
authored
Jan 08, 1994
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(rest_of_compilation): jump_optimize can change max_reg_num so rerun reg_scan
before calling cse_main. From-SVN: r6360
parent
919ea6a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/toplev.c
+5
-2
No files found.
gcc/toplev.c
View file @
9e9b48a4
...
...
@@ -2561,10 +2561,13 @@ rest_of_compilation (decl)
{
/* Running another jump optimization pass before the second
cse pass sometimes simplifies the RTL enough to allow
the second CSE pass to do a better job. */
TIMEVAR
(
cse2_time
,
reg_scan
(
insns
,
max_reg_num
(),
0
));
the second CSE pass to do a better job. Jump_optimize can change
max_reg_num so we must rerun reg_scan afterwards.
??? Rework to not call reg_scan so often. */
TIMEVAR
(
jump_time
,
reg_scan
(
insns
,
max_reg_num
(),
0
));
TIMEVAR
(
jump_time
,
jump_optimize
(
insns
,
0
,
0
,
1
));
TIMEVAR
(
cse2_time
,
reg_scan
(
insns
,
max_reg_num
(),
0
));
TIMEVAR
(
cse2_time
,
tem
=
cse_main
(
insns
,
max_reg_num
(),
1
,
cse2_dump_file
));
if
(
tem
)
...
...
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