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
e92b33f5
Commit
e92b33f5
authored
Aug 12, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(final_scan_insn): Call dwarfout_begin_block and
dwarfout_end_block even for -g1. From-SVN: r1806
parent
b4281273
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
gcc/final.c
+12
-2
No files found.
gcc/final.c
View file @
e92b33f5
...
...
@@ -980,7 +980,12 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
}
if
(
NOTE_LINE_NUMBER
(
insn
)
==
NOTE_INSN_BLOCK_BEG
&&
(
debug_info_level
==
DINFO_LEVEL_NORMAL
||
debug_info_level
==
DINFO_LEVEL_VERBOSE
))
||
debug_info_level
==
DINFO_LEVEL_VERBOSE
#ifdef DWARF_DEBUGGING_INFO
||
write_symbols
==
DWARF_DEBUG
#endif
)
)
{
/* Beginning of a symbol-block. Assign it a sequence number
and push the number onto the stack PENDING_BLOCKS. */
...
...
@@ -1018,7 +1023,12 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
}
else
if
(
NOTE_LINE_NUMBER
(
insn
)
==
NOTE_INSN_BLOCK_END
&&
(
debug_info_level
==
DINFO_LEVEL_NORMAL
||
debug_info_level
==
DINFO_LEVEL_VERBOSE
))
||
debug_info_level
==
DINFO_LEVEL_VERBOSE
#ifdef DWARF_DEBUGGING_INFO
||
write_symbols
==
DWARF_DEBUG
#endif
)
)
{
/* End of a symbol-block. Pop its sequence number off
PENDING_BLOCKS and output debugging info based on that. */
...
...
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