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
1c13f168
Commit
1c13f168
authored
Apr 18, 2011
by
Xinliang David Li
Committed by
Xinliang David Li
Apr 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use ASM_COMMENT_START instead of #
From-SVN: r172682
parent
e5dda971
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/final.c
+3
-3
No files found.
gcc/ChangeLog
View file @
1c13f168
2011-04-18 Xinliang David Li <davidxl@google.com>
* final.c (dump_basic_block_info): Use ASM_COMMENT_START.
2011-04-18 Jakub Jelinek <jakub@redhat.com>
PR middle-end/48661
...
...
gcc/final.c
View file @
1c13f168
...
...
@@ -1691,14 +1691,14 @@ dump_basic_block_info (FILE *file, rtx insn, basic_block *start_to_bb,
edge
e
;
edge_iterator
ei
;
fprintf
(
file
,
"
# BLOCK %d"
,
bb
->
index
);
fprintf
(
file
,
"
%s BLOCK %d"
,
ASM_COMMENT_START
,
bb
->
index
);
if
(
bb
->
frequency
)
fprintf
(
file
,
" freq:%d"
,
bb
->
frequency
);
if
(
bb
->
count
)
fprintf
(
file
,
" count:"
HOST_WIDEST_INT_PRINT_DEC
,
bb
->
count
);
fprintf
(
file
,
" seq:%d"
,
(
*
bb_seqn
)
++
);
fprintf
(
file
,
"
\n
# PRED:"
);
fprintf
(
file
,
"
\n
%s PRED:"
,
ASM_COMMENT_START
);
FOR_EACH_EDGE
(
e
,
ei
,
bb
->
preds
)
{
dump_edge_info
(
file
,
e
,
0
);
...
...
@@ -1711,7 +1711,7 @@ dump_basic_block_info (FILE *file, rtx insn, basic_block *start_to_bb,
edge
e
;
edge_iterator
ei
;
fprintf
(
asm_out_file
,
"
# SUCC:"
);
fprintf
(
asm_out_file
,
"
%s SUCC:"
,
ASM_COMMENT_START
);
FOR_EACH_EDGE
(
e
,
ei
,
bb
->
succs
)
{
dump_edge_info
(
asm_out_file
,
e
,
1
);
...
...
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