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
e0b77418
Commit
e0b77418
authored
Jan 29, 2011
by
Ahmad Sharif
Committed by
Ahmad Sharif
Jan 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* value-prof.c (check_counter): Corrected error message.
From-SVN: r169387
parent
0cd98787
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+4
-0
gcc/value-prof.c
+6
-2
No files found.
gcc/ChangeLog
View file @
e0b77418
2011-01-28 Ahmad Sharif <asharif@google.com>
* value-prof.c (check_counter): Corrected error message.
2011-01-29 Jie Zhang <jie@codesourcery.com>
* config/arm/arm.c (arm_legitimize_reload_address): New.
...
...
gcc/value-prof.c
View file @
e0b77418
...
...
@@ -474,8 +474,12 @@ check_counter (gimple stmt, const char * name,
else
{
error_at
(
locus
,
"corrupted value profile: %s "
"profiler overall count (%d) does not match BB count (%d)"
,
name
,
(
int
)
*
all
,
(
int
)
bb_count
);
"profile counter (%d out of %d) inconsistent with "
"basic-block count (%d)"
,
name
,
(
int
)
*
count
,
(
int
)
*
all
,
(
int
)
bb_count
);
return
true
;
}
}
...
...
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