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
fe51b129
Commit
fe51b129
authored
Jul 02, 2019
by
Eric Botcazou
Committed by
Eric Botcazou
Jul 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgrtl.c (commit_edge_insertions): Rebuild jump labels chain.
From-SVN: r272930
parent
82cea5e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+1
-1
gcc/cfgrtl.c
+5
-1
No files found.
gcc/ChangeLog
View file @
fe51b129
...
...
@@ -4,7 +4,7 @@
to be inserted on single successor edge of the entry block. Then call
commit_edge_insertions instead of inserting the instructions manually.
* cfgrtl.c (commit_edge_insertions): Do not verify flow info during
RTL expansion.
RTL expansion
and rebuild jump labels chain
.
2019-07-02 Richard Biener <rguenther@suse.de>
...
...
gcc/cfgrtl.c
View file @
fe51b129
...
...
@@ -2116,7 +2116,11 @@ commit_edge_insertions (void)
FOR_EACH_EDGE
(
e
,
ei
,
bb
->
succs
)
if
(
e
->
insns
.
r
)
commit_one_edge_insertion
(
e
);
{
if
(
currently_expanding_to_rtl
)
rebuild_jump_labels_chain
(
e
->
insns
.
r
);
commit_one_edge_insertion
(
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