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
9783dd38
Commit
9783dd38
authored
Dec 08, 2005
by
Gabriel Dos Reis
Committed by
Gabriel Dos Reis
Dec 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.h (DECL_EXTERNAL): Clarify documentation.
From-SVN: r108221
parent
4989e88a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/tree.h
+6
-1
No files found.
gcc/ChangeLog
View file @
9783dd38
2005
-
12
-
08
Gabriel
Dos
Reis
<
gdr
@integrable
-
solutions
.
net
>
*
tree
.
h
(
DECL_EXTERNAL
)
:
Clarify
documentation
.
2005
-
12
-
08
Andreas
Krebbel
<
krebbel1
@de
.
ibm
.
com
>
Jakub
Jelinek
<
jakub
@redhat
.
com
>
...
...
gcc/tree.h
View file @
9783dd38
...
...
@@ -2144,7 +2144,12 @@ struct tree_memory_tag GTY(())
#define DECL_LANG_SPECIFIC(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.lang_specific)
/* In a VAR_DECL or FUNCTION_DECL, nonzero means external reference:
do not allocate storage, and refer to a definition elsewhere. */
do not allocate storage, and refer to a definition elsewhere. Note that
this does not necessarily imply the entity represented by NODE
has no program source-level definition in this translation unit. For
example, for a FUNCTION_DECL, DECL_SAVED_TREE may be non-NULL and
DECL_EXTERNAL may be true simultaneously; that can be the case for
a C99 "extern inline" function. */
#define DECL_EXTERNAL(NODE) (DECL_COMMON_CHECK (NODE)->decl_common.decl_flag_2)
/* In a VAR_DECL for a RECORD_TYPE, sets number for non-init_priority
...
...
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