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
674c724c
Commit
674c724c
authored
Jul 23, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(dbxout_source_line): New function.
From-SVN: r1664
parent
e8d6096c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
gcc/dbxout.c
+18
-0
No files found.
gcc/dbxout.c
View file @
674c724c
...
@@ -499,6 +499,24 @@ dbxout_source_file (file, filename)
...
@@ -499,6 +499,24 @@ dbxout_source_file (file, filename)
}
}
}
}
/* Output a line number symbol entry into output stream FILE,
for source file FILENAME and line number LINENO. */
void
dbxout_source_line
(
file
,
filename
,
lineno
)
FILE
*
file
;
char
*
filename
;
int
lineno
;
{
dbxout_source_file
(
file
,
filename
);
#ifdef ASM_OUTPUT_SOURCE_LINE
ASM_OUTPUT_SOURCE_LINE
(
file
,
lineno
);
#else
fprintf
(
file
,
"
\t
%s %d,0,%d
\n
"
,
ASM_STABD_OP
,
N_SLINE
,
lineno
);
#endif
}
/* At the end of compilation, finish writing the symbol table.
/* At the end of compilation, finish writing the symbol table.
Unless you define DBX_OUTPUT_MAIN_SOURCE_FILE_END, the default is
Unless you define DBX_OUTPUT_MAIN_SOURCE_FILE_END, the default is
to do nothing. */
to do nothing. */
...
...
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