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
912b79e7
Commit
912b79e7
authored
Mar 10, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Mar 10, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgcleanup.c (try_optimize_cfg): Fix thinko in previous patch.
From-SVN: r64103
parent
c19de7aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
gcc/ChangeLog
+2
-0
gcc/cfgcleanup.c
+2
-0
No files found.
gcc/ChangeLog
View file @
912b79e7
...
@@ -44,6 +44,8 @@
...
@@ -44,6 +44,8 @@
Mon
Mar
10
15
:
30
:
36
CET
2003
Jan
Hubicka
<
jh
@suse
.
cz
>
Mon
Mar
10
15
:
30
:
36
CET
2003
Jan
Hubicka
<
jh
@suse
.
cz
>
*
cfgcleanup
.
c
(
try_optimize_cfg
)
:
Fix
thinko
in
previous
patch
.
*
cfgcleanup
.
c
(
merge_blocks
)
:
Return
where
to
iterate
next
.
*
cfgcleanup
.
c
(
merge_blocks
)
:
Return
where
to
iterate
next
.
(
try_optimize_cfg
)
:
Use
return
value
of
merge_blocks
(
try_optimize_cfg
)
:
Use
return
value
of
merge_blocks
...
...
gcc/cfgcleanup.c
View file @
912b79e7
...
@@ -861,6 +861,8 @@ merge_blocks (e, b, c, mode)
...
@@ -861,6 +861,8 @@ merge_blocks (e, b, c, mode)
b_has_incoming_fallthru
=
(
tmp_edge
!=
NULL
);
b_has_incoming_fallthru
=
(
tmp_edge
!=
NULL
);
b_fallthru_edge
=
tmp_edge
;
b_fallthru_edge
=
tmp_edge
;
next
=
b
->
prev_bb
;
next
=
b
->
prev_bb
;
if
(
next
==
c
)
next
=
next
->
prev_bb
;
/* Otherwise, we're going to try to move C after B. If C does
/* Otherwise, we're going to try to move C after B. If C does
not have an outgoing fallthru, then it can be moved
not have an outgoing fallthru, then it can be moved
...
...
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