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
f2a02c3a
Commit
f2a02c3a
authored
Sep 03, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(IDENTIFIER_LIMBO_VALUE): New macro.
(struct lang_identifier): New field limbo_value. From-SVN: r2048
parent
207f5376
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/c-tree.h
+5
-1
No files found.
gcc/c-tree.h
View file @
f2a02c3a
...
@@ -23,7 +23,7 @@ struct lang_identifier
...
@@ -23,7 +23,7 @@ struct lang_identifier
{
{
struct
tree_identifier
ignore
;
struct
tree_identifier
ignore
;
tree
global_value
,
local_value
,
label_value
,
implicit_decl
;
tree
global_value
,
local_value
,
label_value
,
implicit_decl
;
tree
error_locus
;
tree
error_locus
,
limbo_value
;
};
};
/* Macros for access to language-specific slots in an identifier. */
/* Macros for access to language-specific slots in an identifier. */
...
@@ -34,6 +34,10 @@ struct lang_identifier
...
@@ -34,6 +34,10 @@ struct lang_identifier
(((struct lang_identifier *)(NODE))->local_value)
(((struct lang_identifier *)(NODE))->local_value)
#define IDENTIFIER_LABEL_VALUE(NODE) \
#define IDENTIFIER_LABEL_VALUE(NODE) \
(((struct lang_identifier *)(NODE))->label_value)
(((struct lang_identifier *)(NODE))->label_value)
/* IDENTIFIER_LIMBO_VALUE records the extern decl of this identifier,
if it has had one. */
#define IDENTIFIER_LIMBO_VALUE(NODE) \
(((struct lang_identifier *)(NODE))->limbo_value)
#define IDENTIFIER_IMPLICIT_DECL(NODE) \
#define IDENTIFIER_IMPLICIT_DECL(NODE) \
(((struct lang_identifier *)(NODE))->implicit_decl)
(((struct lang_identifier *)(NODE))->implicit_decl)
#define IDENTIFIER_ERROR_LOCUS(NODE) \
#define IDENTIFIER_ERROR_LOCUS(NODE) \
...
...
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