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
b6cfd264
Commit
b6cfd264
authored
May 19, 2000
by
Richard Henderson
Committed by
Richard Henderson
May 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (find_if_case_2): Don't allow THEN to be EXIT.
From-SVN: r34036
parent
228c4d97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+2
-0
gcc/ifcvt.c
+6
-3
No files found.
gcc/ChangeLog
View file @
b6cfd264
2000
-
05
-
19
Richard
Henderson
<
rth
@cygnus
.
com
>
*
ifcvt
.
c
(
find_if_case_2
)
:
Don
'
t
allow
THEN
to
be
EXIT
.
*
flow
.
c
(
make_edges
)
:
The
sibling
call
edge
to
exit
is
abnormal
.
2000
-
05
-
19
Richard
Henderson
<
rth
@cygnus
.
com
>
...
...
gcc/ifcvt.c
View file @
b6cfd264
...
...
@@ -1652,14 +1652,17 @@ find_if_case_2 (test_bb, then_edge, else_edge)
if
(
else_bb
->
pred
->
pred_next
!=
NULL
)
return
FALSE
;
/* THEN is not EXIT. */
if
(
then_bb
->
index
<
0
)
return
FALSE
;
/* ELSE is predicted or SUCC(ELSE) postdominates THEN. */
note
=
find_reg_note
(
test_bb
->
end
,
REG_BR_PROB
,
NULL_RTX
);
if
(
note
&&
INTVAL
(
XEXP
(
note
,
0
))
>=
REG_BR_PROB_BASE
/
2
)
;
else
if
(
else_succ
->
dest
->
index
<
0
||
(
then_bb
->
index
>=
0
&&
TEST_BIT
(
post_dominators
[
ORIG_INDEX
(
then_bb
)],
ORIG_INDEX
(
else_succ
->
dest
))))
||
TEST_BIT
(
post_dominators
[
ORIG_INDEX
(
then_bb
)],
ORIG_INDEX
(
else_succ
->
dest
)))
;
else
return
FALSE
;
...
...
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