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
b213a5ca
Commit
b213a5ca
authored
Aug 14, 2001
by
Matt Kraai
Committed by
Matt Kraai
Aug 14, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* predict.c (dump_prediction): Change `bool' parameter to `int'.
From-SVN: r44895
parent
c895acf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/predict.c
+2
-2
No files found.
gcc/ChangeLog
View file @
b213a5ca
2001
-
08
-
14
Matt
Kraai
<
kraai
@alumni
.
carnegiemellon
.
edu
>
*
predict
.
c
(
dump_prediction
)
:
Change
`
bool
'
parameter
to
`
int
'
.
2001
-
08
-
14
Gabriel
Dos
Reis
<
gdr
@codesourcery
.
com
>
*
Makefile
.
in
(
OBJS
)
:
Add
rtl
-
error
.
o
...
...
gcc/predict.c
View file @
b213a5ca
...
...
@@ -59,7 +59,7 @@
static
void
combine_predictions_for_insn
PARAMS
((
rtx
,
basic_block
));
static
void
dump_prediction
PARAMS
((
enum
br_predictor
,
int
,
basic_block
,
bool
));
basic_block
,
int
));
static
void
estimate_loops_at_level
PARAMS
((
struct
loop
*
loop
));
static
void
propagate_freq
PARAMS
((
basic_block
));
static
void
estimate_bb_frequencies
PARAMS
((
struct
loops
*
));
...
...
@@ -182,7 +182,7 @@ dump_prediction (predictor, probability, bb, used)
enum
br_predictor
predictor
;
int
probability
;
basic_block
bb
;
bool
used
;
int
used
;
{
edge
e
=
bb
->
succ
;
...
...
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