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
c773653b
Commit
c773653b
authored
28 years ago
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarfout.c (*): flag_verbose_asm renamed to flag_debug_asm.
From-SVN: r12004
parent
17b65371
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
gcc/dwarfout.c
+9
-9
No files found.
gcc/dwarfout.c
View file @
c773653b
...
...
@@ -608,7 +608,7 @@ static unsigned lookup_filename ();
do { \
fprintf ((FILE), "\t%s\t0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) TAG); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_tag_name (TAG)); \
fputc ('\n', (FILE)); \
...
...
@@ -620,7 +620,7 @@ static unsigned lookup_filename ();
do { \
fprintf ((FILE), "\t%s\t0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) ATTR); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_attr_name (ATTR)); \
fputc ('\n', (FILE)); \
...
...
@@ -631,7 +631,7 @@ static unsigned lookup_filename ();
#define ASM_OUTPUT_DWARF_STACK_OP(FILE,OP) \
do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) OP); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_stack_op_name (OP)); \
fputc ('\n', (FILE)); \
...
...
@@ -643,7 +643,7 @@ static unsigned lookup_filename ();
do { \
fprintf ((FILE), "\t%s\t0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) FT); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_fund_type_name (FT)); \
fputc ('\n', (FILE)); \
...
...
@@ -654,7 +654,7 @@ static unsigned lookup_filename ();
#define ASM_OUTPUT_DWARF_FMT_BYTE(FILE,FMT) \
do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) FMT); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_fmt_byte_name (FMT)); \
fputc ('\n', (FILE)); \
...
...
@@ -665,7 +665,7 @@ static unsigned lookup_filename ();
#define ASM_OUTPUT_DWARF_TYPE_MODIFIER(FILE,MOD) \
do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) MOD); \
if (flag_
verbose_asm)
\
if (flag_
debug_asm)
\
fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_typemod_name (MOD)); \
fputc ('\n', (FILE)); \
...
...
@@ -1084,7 +1084,7 @@ output_unsigned_leb128 (value)
if
(
value
!=
0
)
/* more bytes to follow */
byte
|=
0x80
;
fprintf
(
asm_out_file
,
"
\t
%s
\t
0x%x"
,
ASM_BYTE_OP
,
(
unsigned
)
byte
);
if
(
flag_
verbose
_asm
&&
value
==
0
)
if
(
flag_
debug
_asm
&&
value
==
0
)
fprintf
(
asm_out_file
,
"
\t
%s ULEB128 number - value = %u"
,
ASM_COMMENT_START
,
orig_value
);
fputc
(
'\n'
,
asm_out_file
);
...
...
@@ -1116,7 +1116,7 @@ output_signed_leb128 (value)
more
=
1
;
}
fprintf
(
asm_out_file
,
"
\t
%s
\t
0x%x"
,
ASM_BYTE_OP
,
(
unsigned
)
byte
);
if
(
flag_
verbose
_asm
&&
more
==
0
)
if
(
flag_
debug
_asm
&&
more
==
0
)
fprintf
(
asm_out_file
,
"
\t
%s SLEB128 number - value = %d"
,
ASM_COMMENT_START
,
orig_value
);
fputc
(
'\n'
,
asm_out_file
);
...
...
@@ -1477,7 +1477,7 @@ output_reg_number (rtl)
}
fprintf
(
asm_out_file
,
"
\t
%s
\t
0x%x"
,
UNALIGNED_INT_ASM_OP
,
DBX_REGISTER_NUMBER
(
regno
));
if
(
flag_
verbose
_asm
)
if
(
flag_
debug
_asm
)
{
fprintf
(
asm_out_file
,
"
\t
%s "
,
ASM_COMMENT_START
);
PRINT_REG
(
rtl
,
0
,
asm_out_file
);
...
...
This diff is collapsed.
Click to expand it.
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