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
e4efa971
Commit
e4efa971
authored
May 27, 2004
by
Jan Hubicka
Committed by
Jan Hubicka
May 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgcleanup.c (try_optimize_cfg): Do not merge across jumptables.
From-SVN: r82296
parent
dabbc722
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-1
gcc/cfgcleanup.c
+3
-1
No files found.
gcc/ChangeLog
View file @
e4efa971
2004-05-27 Jan Hubicka <jh@suse.cz>
* cfgcleanup.c (try_optimize_cfg): Do not merge across jumptables.
2004-05-27 Jan Hubicka <jh@suse.cz>
* i386.md (UNSPECV_EH_RETURN): Kill.
(eh_return): Use jump_insn.
(eh_return_si, eh_return_di): Change pattern to jump instruction.
...
...
@@ -8,7 +12,6 @@
* cfgcleanup.c (try_forward_edges): Do not check loop structure when
not loop optimizing.
(try_optimize_cfg): Do not merge across jumptables.
2004-05-26 Jan Hubicka <jh@suse.cz>
...
...
gcc/cfgcleanup.c
View file @
e4efa971
...
...
@@ -1938,7 +1938,9 @@ try_optimize_cfg (int mode)
&&
(
GET_CODE
(
BB_END
(
b
))
!=
JUMP_INSN
||
(
reload_completed
?
simplejump_p
(
BB_END
(
b
))
:
onlyjump_p
(
BB_END
(
b
))))
:
(
onlyjump_p
(
BB_END
(
b
))
&&
!
tablejump_p
(
BB_END
(
b
),
NULL
,
NULL
))))
&&
(
next
=
merge_blocks_move
(
s
,
b
,
c
,
mode
)))
{
b
=
next
;
...
...
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