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
c0da11c4
Commit
c0da11c4
authored
Oct 07, 1997
by
Jason Merrill
Committed by
Jason Merrill
Oct 07, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c (rest_of_compilation): Defer all non-nested inlines.
From-SVN: r15861
parent
6714c1ae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+4
-0
gcc/toplev.c
+5
-0
No files found.
gcc/ChangeLog
View file @
c0da11c4
...
...
@@ -46,6 +46,10 @@ Mon Oct 6 12:04:24 1997 Jeffrey A Law (law@cygnus.com)
* Makefile.in (check-g77): New test target.
(CHECK-TARGETS): Add check-g77.
Fri Oct 3 11:56:36 1997 Jason Merrill <jason@yorick.cygnus.com>
* toplev.c (rest_of_compilation): Defer all non-nested inlines.
Fri Oct 3 15:49:27 1997 Michael Meissner <meissner@cygnus.com>
* flow.c (print_rtl_with_bb): Cast alloca return value for
...
...
gcc/toplev.c
View file @
c0da11c4
...
...
@@ -3022,6 +3022,11 @@ rest_of_compilation (decl)
fflush
(
rtl_dump_file
);
});
/* If we can, defer compiling inlines until EOF.
save_for_inline_copying can be extremely expensive. */
if
(
inlineable
&&
!
decl_function_context
(
decl
))
DECL_DEFER_OUTPUT
(
decl
)
=
1
;
/* If function is inline, and we don't yet know whether to
compile it by itself, defer decision till end of compilation.
finish_compilation will call rest_of_compilation again
...
...
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