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
791f5e8d
Commit
791f5e8d
authored
Mar 01, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Mar 01, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo some breakage introduced Feb 18
From-SVN: r40162
parent
9c1eed37
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
gcc/ChangeLog
+6
-0
gcc/toplev.c
+8
-2
No files found.
gcc/ChangeLog
View file @
791f5e8d
2001-03-01 Bernd Schmidt <bernds@redhat.com>
Fix a problem introduced by Kenner's Feb 18 change.
* toplev.c (rest_of_compilation): Disable flag_cse_follow_jumps and
flag_cse_skip_blocks only temporarily, not for ever.
Thu Mar 1 09:49:58 2001 Jeffrey A Law (law@cygnus.com)
* pa.c (emit_move_sequence): Verify operand0 is a hard register
...
...
gcc/toplev.c
View file @
791f5e8d
...
...
@@ -3002,7 +3002,6 @@ rest_of_compilation (decl)
/* If we are not running more CSE passes, then we are no longer
expecting CSE to be run. But always rerun it in a cheap mode. */
cse_not_expected
=
!
flag_rerun_cse_after_loop
&&
!
flag_gcse
;
flag_cse_skip_blocks
=
flag_cse_follow_jumps
=
0
;
if
(
tem
||
optimize
>
1
)
{
...
...
@@ -3101,6 +3100,7 @@ rest_of_compilation (decl)
if
(
optimize
>
0
&&
flag_gcse
)
{
int
save_csb
,
save_cfj
;
int
tem2
=
0
;
timevar_push
(
TV_GCSE
);
...
...
@@ -3110,6 +3110,10 @@ rest_of_compilation (decl)
cleanup_cfg
(
insns
);
tem
=
gcse_main
(
insns
,
rtl_dump_file
);
save_csb
=
flag_cse_skip_blocks
;
save_cfj
=
flag_cse_follow_jumps
;
flag_cse_skip_blocks
=
flag_cse_follow_jumps
=
0
;
/* If -fexpensive-optimizations, re-run CSE to clean up things done
by gcse. */
if
(
flag_expensive_optimizations
)
...
...
@@ -3144,7 +3148,9 @@ rest_of_compilation (decl)
timevar_pop
(
TV_GCSE
);
ggc_collect
();
}
flag_cse_skip_blocks
=
save_csb
;
flag_cse_follow_jumps
=
save_cfj
;
}
/* Move constant computations out of loops. */
...
...
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