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
9b7a11e1
Commit
9b7a11e1
authored
Jun 06, 2014
by
Eric Botcazou
Committed by
Eric Botcazou
Jun 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-cfg.c (make_edges) <GIMPLE_RETURN>: Put a location on the edge.
From-SVN: r211307
parent
726338f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/tree-cfg.c
+5
-2
No files found.
gcc/ChangeLog
View file @
9b7a11e1
2014-06-06 Eric Botcazou <ebotcazou@adacore.com>
* tree-cfg.c (make_edges) <GIMPLE_RETURN>: Put a location on the edge.
2014-06-06 Richard Biener <rguenther@suse.de>
* cfgexpand.c (expand_gimple_cond): Remove check for current_loops.
...
...
gcc/tree-cfg.c
View file @
9b7a11e1
...
...
@@ -763,8 +763,11 @@ make_edges (void)
fallthru
=
false
;
break
;
case
GIMPLE_RETURN
:
make_edge
(
bb
,
EXIT_BLOCK_PTR_FOR_FN
(
cfun
),
0
);
fallthru
=
false
;
{
edge
e
=
make_edge
(
bb
,
EXIT_BLOCK_PTR_FOR_FN
(
cfun
),
0
);
e
->
goto_locus
=
gimple_location
(
last
);
fallthru
=
false
;
}
break
;
case
GIMPLE_COND
:
make_cond_expr_edges
(
bb
);
...
...
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