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
937522b5
Commit
937522b5
authored
Jul 17, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r1604
parent
03646189
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
gcc/toplev.c
+23
-0
No files found.
gcc/toplev.c
View file @
937522b5
...
...
@@ -2039,6 +2039,17 @@ rest_of_compilation (decl)
&&
!
flag_keep_inline_functions
)
||
DECL_EXTERNAL
(
decl
)))
{
#ifdef DWARF_DEBUGGING_INFO
/* Generate the DWARF info for the "abstract" instance
of a function which we may later generate inlined and/or
out-of-line instances of. */
if
(
write_symbols
==
DWARF_DEBUG
)
{
set_decl_abstract_flags
(
decl
,
1
);
TIMEVAR
(
symout_time
,
dwarfout_file_scope_decl
(
decl
,
0
));
set_decl_abstract_flags
(
decl
,
0
);
}
#endif
TIMEVAR
(
integration_time
,
save_for_inline_nocopy
(
decl
));
goto
exit_rest_of_compilation
;
}
...
...
@@ -2047,6 +2058,18 @@ rest_of_compilation (decl)
so that its compilation will not affect what others get. */
if
(
DECL_INLINE
(
decl
))
{
#ifdef DWARF_DEBUGGING_INFO
/* Generate the DWARF info for the "abstract" instance of
a function which we will generate an out-of-line instance
of almost immediately (and which we may also later generate
various inlined instances of). */
if
(
write_symbols
==
DWARF_DEBUG
)
{
set_decl_abstract_flags
(
decl
,
1
);
TIMEVAR
(
symout_time
,
dwarfout_file_scope_decl
(
decl
,
0
));
set_decl_abstract_flags
(
decl
,
0
);
}
#endif
saved_block_tree
=
DECL_INITIAL
(
decl
);
saved_arguments
=
DECL_ARGUMENTS
(
decl
);
TIMEVAR
(
integration_time
,
save_for_inline_copying
(
decl
));
...
...
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