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
46dbb914
Commit
46dbb914
authored
Jul 17, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(rest_of_compilation): If function is extern inline,
even if we can't inline it, don't compile it. From-SVN: r4931
parent
82e9f5e9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
gcc/toplev.c
+5
-0
No files found.
gcc/toplev.c
View file @
46dbb914
...
...
@@ -2253,6 +2253,11 @@ rest_of_compilation (decl)
if
(
warn_inline
&&
specd
)
warning_with_decl
(
decl
,
lose
);
DECL_INLINE
(
decl
)
=
0
;
/* Don't really compile an extern inline function.
If we can't make it inline, pretend
it was only declared. */
if
(
DECL_EXTERNAL
(
decl
))
goto
exit_rest_of_compilation
;
}
else
DECL_INLINE
(
decl
)
=
1
;
...
...
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