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
fd052ec3
Commit
fd052ec3
authored
Jul 10, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
Jul 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct branch/fallthru edge detection
From-SVN: r43902
parent
a4d81081
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/bb-reorder.c
+1
-1
No files found.
gcc/ChangeLog
View file @
fd052ec3
2001-07-10 Bernd Schmidt <bernds@redhat.com>
* bb-reorder.c (make_reorder_chain_1): Correct branch/fallthru
edge detection.
Tue Jul 10 07:27:53 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* expr.c (expand_expr, case COMPONENT_REF): Don't force using bitfield
...
...
gcc/bb-reorder.c
View file @
fd052ec3
...
...
@@ -409,7 +409,7 @@ make_reorder_chain_1 (bb, prev)
{
if
(
e
->
flags
&
EDGE_FALLTHRU
)
e_fall
=
e
;
if
(
!
(
e
->
flags
&
EDGE_EH
))
else
if
(
!
(
e
->
flags
&
EDGE_EH
))
e_taken
=
e
;
}
...
...
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