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
1c2755a6
Unverified
Commit
1c2755a6
authored
Jan 16, 2020
by
Martin Liska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spacing in a dump in value-prof.c.
* value-prof.c (dump_histogram_value): Fix obvious spacing issue.
parent
2db99ef7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+5
-0
gcc/value-prof.c
+2
-2
No files found.
gcc/ChangeLog
View file @
1c2755a6
2020-01-16 Martin Liska <mliska@suse.cz>
* value-prof.c (dump_histogram_value): Fix
obvious spacing issue.
2020-01-16 Andrew Pinski <apinski@marvell.com>
* tree-ssa-sccvn.c(vn_reference_lookup_3): Check lhs for
...
...
gcc/value-prof.c
View file @
1c2755a6
...
...
@@ -262,10 +262,10 @@ dump_histogram_value (FILE *dump_file, histogram_value hist)
{
fprintf
(
dump_file
,
(
hist
->
type
==
HIST_TYPE_TOPN_VALUES
?
"Top N value counter
"
:
"Indirect call counter"
));
?
"Top N value counter"
:
"Indirect call counter"
));
if
(
hist
->
hvalue
.
counters
)
{
fprintf
(
dump_file
,
"all: %"
PRId64
", values: "
,
fprintf
(
dump_file
,
"
all: %"
PRId64
", values: "
,
(
int64_t
)
hist
->
hvalue
.
counters
[
0
]);
for
(
unsigned
i
=
0
;
i
<
GCOV_TOPN_VALUES
;
i
++
)
{
...
...
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