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
b9cbfeeb
Commit
b9cbfeeb
authored
Aug 31, 2013
by
Jan Hubicka
Committed by
Jan Hubicka
Aug 31, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* basic-block.h (apply_scale): Make scale parmeter gcov_type.
From-SVN: r202128
parent
41dedebd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/basic-block.h
+1
-1
No files found.
gcc/ChangeLog
View file @
b9cbfeeb
2013-08-31 Jan Hubicka <jh@suse.cz>
* basic-block.h (apply_scale): Make scale parmeter gcov_type.
2013-08-31 Uros Bizjak <ubizjak@gmail.com>
2013-08-31 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/alpha.c (alpha_emit_conditional_move): Update
* config/alpha/alpha.c (alpha_emit_conditional_move): Update
...
...
gcc/basic-block.h
View file @
b9cbfeeb
...
@@ -960,7 +960,7 @@ combine_probabilities (int prob1, int prob2)
...
@@ -960,7 +960,7 @@ combine_probabilities (int prob1, int prob2)
constrained to be < REG_BR_PROB_BASE. */
constrained to be < REG_BR_PROB_BASE. */
static
inline
gcov_type
static
inline
gcov_type
apply_scale
(
gcov_type
freq
,
int
scale
)
apply_scale
(
gcov_type
freq
,
gcov_type
scale
)
{
{
return
RDIV
(
freq
*
scale
,
REG_BR_PROB_BASE
);
return
RDIV
(
freq
*
scale
,
REG_BR_PROB_BASE
);
}
}
...
...
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