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
4f282ba1
Commit
4f282ba1
authored
Apr 09, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Apr 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix comments/ChangeLog entry for last night's change.
From-SVN: r26320
parent
5e4df1ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
gcc/ChangeLog
+3
-3
gcc/flow.c
+3
-4
No files found.
gcc/ChangeLog
View file @
4f282ba1
...
...
@@ -46,9 +46,9 @@ Thu Apr 8 19:20:18 1999 Jeffrey A Law (law@cygnus.com)
Do
not
try
to
optimize
a
aggregate
address
which
has
VOIDmode
.
Mirrors
March
23
change
to
expand_assignment
.
*
flow
.
c
(
delete_unreachable_blocks
)
:
Do
not
require
an
edge
to
be
marked
with
EDGE_FALLTHRU
when
tidying
an
edge
which
connects
consecutive
basic
blocks
.
*
flow
.
c
(
delete_unreachable_blocks
)
:
Do
not
require
EDGE_FALLTHRU
for
an
edge
when
tidying
an
edge
which
connects
consecutive
basic
blocks
.
*
flow
.
c
(
can_delete_label_p
)
:
Do
not
convert
a
label
into
a
deleted
label
here
.
...
...
gcc/flow.c
View file @
4f282ba1
...
...
@@ -1563,10 +1563,9 @@ delete_unreachable_blocks ()
out edge for the block which ended with the conditional
branch (since we do not create duplicate edges).
Furthermore, because we create the edge for the jump to the
label before the fallthrough edge, we will only see the
jump edge. So we do not want to check that the edge is a
FALLTHRU edge. */
Furthermore, the edge will be marked as a fallthru because we
merge the flags for the duplicate edges. So we do not want to
check that the edge is not a FALLTHRU edge. */
if
((
s
=
b
->
succ
)
!=
NULL
&&
s
->
succ_next
==
NULL
&&
s
->
dest
==
c
)
...
...
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