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
c512fd7b
Commit
c512fd7b
authored
Aug 09, 2002
by
Toshiyasu Morita
Committed by
Richard Henderson
Aug 09, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (find_if_case_2): Test correct basic block for size.
From-SVN: r56167
parent
5e1bf043
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/ifcvt.c
+1
-1
No files found.
gcc/ChangeLog
View file @
c512fd7b
2002-08-09 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
* ifcvt.c (find_if_case_2): Test correct basic block for size.
2002-08-09 Dale Johannesen <dalej@apple.com>
* config/rs6000/rs6000.md: Add sibcall patterns.
* config/rs6000/rs6000.h (FUNCTION_OK_FOR_SIBCALL): Define.
* config/rs6000/rs6000.c (rs6000_ra_ever_killed):
...
...
gcc/ifcvt.c
View file @
c512fd7b
...
...
@@ -2769,7 +2769,7 @@ find_if_case_2 (test_bb, then_edge, else_edge)
test_bb
->
index
,
else_bb
->
index
);
/* ELSE is small. */
if
(
count_bb_insns
(
then
_bb
)
>
BRANCH_COST
)
if
(
count_bb_insns
(
else
_bb
)
>
BRANCH_COST
)
return
FALSE
;
/* Registers set are dead, or are predicable. */
...
...
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