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
26e75214
Commit
26e75214
authored
Jan 17, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Jan 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-cfg.c (tree_can_merge_blocks_p): Reorder two checks.
From-SVN: r93767
parent
e3961da6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/tree-cfg.c
+3
-3
No files found.
gcc/ChangeLog
View file @
26e75214
2005-01-17 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c (tree_can_merge_blocks_p): Reorder two checks.
2005-01-17 Ian Lance Taylor <ian@airs.com>
PR middle-end/13127:
...
...
gcc/tree-cfg.c
View file @
26e75214
...
...
@@ -1217,12 +1217,12 @@ tree_can_merge_blocks_p (basic_block a, basic_block b)
if
(
EDGE_SUCC
(
a
,
0
)
->
dest
!=
b
)
return
false
;
if
(
b
==
EXIT_BLOCK_PTR
)
return
false
;
if
(
EDGE_COUNT
(
b
->
preds
)
>
1
)
return
false
;
if
(
b
==
EXIT_BLOCK_PTR
)
return
false
;
/* If A ends by a statement causing exceptions or something similar, we
cannot merge the blocks. */
stmt
=
last_stmt
(
a
);
...
...
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