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
b2526fe6
Commit
b2526fe6
authored
May 31, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(output_source_line): Call xcoffout_source_line.
From-SVN: r7409
parent
3fe49c00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
gcc/final.c
+8
-3
No files found.
gcc/final.c
View file @
b2526fe6
...
...
@@ -2030,10 +2030,15 @@ output_source_line (file, insn)
}
#endif
#if defined (DBX_DEBUGGING_INFO)
|| defined (XCOFF_DEBUGGING_INFO)
if
(
write_symbols
==
DBX_DEBUG
||
write_symbols
==
XCOFF_DEBUG
)
#if defined (DBX_DEBUGGING_INFO)
if
(
write_symbols
==
DBX_DEBUG
)
dbxout_source_line
(
file
,
filename
,
NOTE_LINE_NUMBER
(
insn
));
#endif
/* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
#endif
#if defined (XCOFF_DEBUGGING_INFO)
if
(
write_symbols
==
XCOFF_DEBUG
)
xcoffout_source_line
(
file
,
filename
,
insn
);
#endif
#ifdef DWARF_DEBUGGING_INFO
if
(
write_symbols
==
DWARF_DEBUG
)
...
...
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