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
1a6281cb
Commit
1a6281cb
authored
Dec 13, 1995
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call new dbxout functions when changing source files.
From-SVN: r10705
parent
19d2d16f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/c-lex.c
+8
-0
No files found.
gcc/c-lex.c
View file @
1a6281cb
...
@@ -590,6 +590,10 @@ linenum:
...
@@ -590,6 +590,10 @@ linenum:
p
->
name
=
input_filename
;
p
->
name
=
input_filename
;
input_file_stack
=
p
;
input_file_stack
=
p
;
input_file_stack_tick
++
;
input_file_stack_tick
++
;
#ifdef DBX_DEBUGGING_INFO
if
(
write_symbols
==
DBX_DEBUG
)
dbxout_start_new_source_file
(
input_filename
);
#endif
#ifdef DWARF_DEBUGGING_INFO
#ifdef DWARF_DEBUGGING_INFO
if
(
debug_info_level
==
DINFO_LEVEL_VERBOSE
if
(
debug_info_level
==
DINFO_LEVEL_VERBOSE
&&
write_symbols
==
DWARF_DEBUG
)
&&
write_symbols
==
DWARF_DEBUG
)
...
@@ -607,6 +611,10 @@ linenum:
...
@@ -607,6 +611,10 @@ linenum:
input_file_stack
=
p
->
next
;
input_file_stack
=
p
->
next
;
free
(
p
);
free
(
p
);
input_file_stack_tick
++
;
input_file_stack_tick
++
;
#ifdef DBX_DEBUGGING_INFO
if
(
write_symbols
==
DBX_DEBUG
)
dbxout_resume_previous_source_file
();
#endif
#ifdef DWARF_DEBUGGING_INFO
#ifdef DWARF_DEBUGGING_INFO
if
(
debug_info_level
==
DINFO_LEVEL_VERBOSE
if
(
debug_info_level
==
DINFO_LEVEL_VERBOSE
&&
write_symbols
==
DWARF_DEBUG
)
&&
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