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
247b14bd
Commit
247b14bd
authored
Feb 08, 1999
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify inline substitution failure.
From-SVN: r25103
parent
29ae5b89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
gcc/extend.texi
+9
-3
No files found.
gcc/extend.texi
View file @
247b14bd
...
...
@@ -2258,10 +2258,16 @@ inc (int *a)
(
If
you
are
writing
a
header
file
to
be
included
in
ANSI
C
programs
,
write
@
code
{
__inline__
}
instead
of
@
code
{
inline
}.
@
xref
{
Alternate
Keywords
}.)
You
can
also
make
all
``
simple
enough
''
functions
inline
with
the
option
@
samp
{-
finline
-
functions
}.
Note
that
certain
usages
in
a
function
definition
can
make
it
unsuitable
for
inline
substitution
.
@
samp
{-
finline
-
functions
}.
Note
that
certain
usages
in
a
function
definition
can
make
it
unsuitable
for
inline
substitution
.
Among
these
usages
are
:
use
of
varargs
,
use
of
alloca
,
use
of
variable
sized
data
types
(@
pxref
{
Variable
Length
}),
use
of
computed
goto
(@
pxref
{
Labels
as
Values
}),
use
of
nonlocal
goto
,
and
nested
functions
(@
pxref
{
Nested
Functions
}).
Using
@
samp
{-
Winline
}
will
warn
when
a
function
marked
@
code
{
inline
}
could
not
be
substituted
,
and
will
give
the
reason
for
the
failure
.
Note
that
in
C
and
Objective
C
,
unlike
C
++,
the
@
code
{
inline
}
keyword
does
not
affect
the
linkage
of
the
function
.
...
...
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