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
1db9f6ce
Commit
1db9f6ce
authored
Dec 07, 1998
by
Nick Clifton
Committed by
Nick Clifton
Dec 07, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve -dp output by using tabs and including instruciton lengths
From-SVN: r24149
parent
eb6a3bc0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/ChangeLog
+7
-0
gcc/final.c
+4
-2
No files found.
gcc/ChangeLog
View file @
1db9f6ce
Mon
Dec
7
11
:
30
:
49
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
final
.
c
(
output_asm_name
)
:
Use
tabs
to
seperate
comments
from
assembly
text
.
Include
instruction
lengths
(
if
defined
)
in
output
.
Mon
Dec
7
10
:
53
:
38
1998
Michael
Hayes
<
m
.
hayes
@elec
.
canterbury
.
ac
.
nz
>
*
loop
.
c
(
check_dbra_loop
)
:
Fix
initial_value
and
initial_equiv_value
...
...
gcc/final.c
View file @
1db9f6ce
...
...
@@ -3337,11 +3337,13 @@ output_asm_name ()
if
(
debug_insn
)
{
register
int
num
=
INSN_CODE
(
debug_insn
);
fprintf
(
asm_out_file
,
"
%s %d
%s"
,
fprintf
(
asm_out_file
,
"
\t
%s %d
\t
%s"
,
ASM_COMMENT_START
,
INSN_UID
(
debug_insn
),
insn_name
[
num
]);
if
(
insn_n_alternatives
[
num
]
>
1
)
fprintf
(
asm_out_file
,
"/%d"
,
which_alternative
+
1
);
#ifdef HAVE_ATTR_length
fprintf
(
asm_out_file
,
"
\t
[length = %d]"
,
get_attr_length
(
debug_insn
));
#endif
/* Clear this so only the first assembler insn
of any rtl insn will get the special comment for -dp. */
debug_insn
=
0
;
...
...
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