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
3cca99e8
Commit
3cca99e8
authored
Sep 02, 1993
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spaces in basic block output.
From-SVN: r5250
parent
92832bb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gcc/libgcc2.c
+4
-4
No files found.
gcc/libgcc2.c
View file @
3cca99e8
...
@@ -1427,20 +1427,20 @@ __bb_exit_func (void)
...
@@ -1427,20 +1427,20 @@ __bb_exit_func (void)
for
(
i
=
0
;
i
<
ncounts
;
i
++
)
for
(
i
=
0
;
i
<
ncounts
;
i
++
)
{
{
fprintf
(
file
,
fprintf
(
file
,
" Block #%*d: executed %*ld time(s) address=0x%.*lx"
,
" Block #%*d: executed %*ld time(s) address=
0x%.*lx"
,
blk_len
,
i
+
1
,
blk_len
,
i
+
1
,
cnt_len
,
ptr
->
counts
[
i
],
cnt_len
,
ptr
->
counts
[
i
],
addr_len
,
ptr
->
addresses
[
i
]);
addr_len
,
ptr
->
addresses
[
i
]);
if
(
func_p
)
if
(
func_p
)
fprintf
(
file
,
" function=%-*s"
,
func_len
,
fprintf
(
file
,
" function=
%-*s"
,
func_len
,
(
ptr
->
functions
[
i
])
?
ptr
->
functions
[
i
]
:
"<none>"
);
(
ptr
->
functions
[
i
])
?
ptr
->
functions
[
i
]
:
"<none>"
);
if
(
line_p
)
if
(
line_p
)
fprintf
(
file
,
" line=%*d"
,
line_len
,
ptr
->
line_nums
[
i
]);
fprintf
(
file
,
" line=
%*d"
,
line_len
,
ptr
->
line_nums
[
i
]);
if
(
file_p
)
if
(
file_p
)
fprintf
(
file
,
" file=%s"
,
fprintf
(
file
,
" file=
%s"
,
(
ptr
->
filenames
[
i
])
?
ptr
->
filenames
[
i
]
:
"<none>"
);
(
ptr
->
filenames
[
i
])
?
ptr
->
filenames
[
i
]
:
"<none>"
);
fprintf
(
file
,
"
\n
"
);
fprintf
(
file
,
"
\n
"
);
...
...
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