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
22acfb79
Commit
22acfb79
authored
Oct 13, 1999
by
Niels Möller
Committed by
Martin v. Löwis
Oct 13, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* extend.texi (Function Names): Document types of function names.
From-SVN: r29938
parent
7f22ec2e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
6 deletions
+43
-6
gcc/ChangeLog
+4
-0
gcc/extend.texi
+39
-6
No files found.
gcc/ChangeLog
View file @
22acfb79
Wed
Oct
13
09
:
25
:
03
1999
Niels
Mller
<
nisse
@lysator
.
liu
.
se
>
*
extend
.
texi
(
Function
Names
)
:
Document
types
of
function
names
.
Wed
Oct
13
00
:
45
:
04
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
reload1
.
c
(
reload_reg_free_for_value_p
)
:
RELOAD_OTHER
reloads
with
...
...
gcc/extend.texi
View file @
22acfb79
...
...
@@ -2999,10 +2999,11 @@ This extension is not supported by GNU C++.
@
node
Function
Names
@
section
Function
Names
as
Strings
GNU
CC
predefines
two
string
variables
to
be
the
name
of
the
current
function
.
The
variable
@
code
{
__FUNCTION__
}
is
the
name
of
the
function
as
it
appears
in
the
source
.
The
variable
@
code
{
__PRETTY_FUNCTION__
}
is
the
name
of
the
function
pretty
printed
in
a
language
specific
fashion
.
GNU
CC
predefines
two
magic
identifiers
to
hold
the
name
of
the
current
function
.
The
identifier
@
code
{
__FUNCTION__
}
holds
the
name
of
the
function
as
it
appears
in
the
source
.
The
identifier
@
code
{
__PRETTY_FUNCTION__
}
holds
the
name
of
the
function
pretty
printed
in
a
language
specific
fashion
.
These
names
are
always
the
same
in
a
C
function
,
but
in
a
C
++
function
they
may
be
different
.
For
example
,
this
program
:
...
...
@@ -3038,11 +3039,43 @@ __FUNCTION__ = sub
__PRETTY_FUNCTION__
=
int
a
::
sub
(
int
)
@
end
smallexample
These
names
are
not
macros
:
they
are
predefined
string
variables
.
For
example
,
@
samp
{#
ifdef
__FUNCTION__
}
does
not
have
any
special
The
compiler
automagically
replaces
the
identifiers
with
a
string
literal
containing
the
appropriate
name
.
Thus
,
they
are
neither
preprocessor
macros
,
like
@
code
{
__FILE__
}
and
@
code
{
__LINE__
},
nor
variables
.
This
means
that
they
catenate
with
other
string
literals
,
and
that
they
can
be
used
to
initialize
char
arrays
.
For
example
@
smallexample
char
here
[]
=
"Function "
__FUNCTION__
" in "
__FILE__
;
@
end
smallexample
On
the
other
hand
,
@
samp
{#
ifdef
__FUNCTION__
}
does
not
have
any
special
meaning
inside
a
function
,
since
the
preprocessor
does
not
do
anything
special
with
the
identifier
@
code
{
__FUNCTION__
}.
GNU
CC
also
supports
the
magic
word
@
code
{
__func__
},
defined
by
the
draft
standard
for
C
-
99
:
@
display
The
identifier
@
code
{
__func__
}
is
implicitly
declared
by
the
translator
as
if
,
immediately
following
the
opening
brace
of
each
function
definition
,
the
declaration
@
smallexample
static
const
char
__func__
[]
=
"function-name"
;
@
end
smallexample
appeared
,
where
function
-
name
is
the
name
of
the
lexically
-
enclosing
function
.
This
name
is
the
unadorned
name
of
the
function
.
@
end
display
By
this
definition
,
@
code
{
__func__
}
is
a
variable
,
not
a
string
literal
.
In
particular
,
@
code
{
__func__
}
does
not
catenate
with
other
string
literals
.
In
@
code
{
C
++},
@
code
{
__FUNCTION__
}
and
@
code
{
__PRETTY_FUNCTION__
}
are
variables
,
declared
in
the
same
way
as
@
code
{
__func__
}.
@
node
Return
Address
@
section
Getting
the
Return
or
Frame
Address
of
a
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