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
42981920
Commit
42981920
authored
Mar 02, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ITERATOR_P, ITERATOR_BOUND_P): New macros.
From-SVN: r3584
parent
726b5217
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
gcc/c-tree.h
+15
-0
No files found.
gcc/c-tree.h
View file @
42981920
...
@@ -137,6 +137,13 @@ struct lang_type
...
@@ -137,6 +137,13 @@ struct lang_type
|| TYPE_MAIN_VARIANT (t) == unsigned_char_type_node \
|| TYPE_MAIN_VARIANT (t) == unsigned_char_type_node \
|| TYPE_MAIN_VARIANT (t) == short_integer_type_node \
|| TYPE_MAIN_VARIANT (t) == short_integer_type_node \
|| TYPE_MAIN_VARIANT (t) == short_unsigned_type_node))
|| TYPE_MAIN_VARIANT (t) == short_unsigned_type_node))
/* In a VAR_DECL, means the variable is really an iterator. */
#define ITERATOR_P(D) (DECL_LANG_FLAG_4(D))
/* In a VAR_DECL for an iterator, means we are within
an explicit loop over that iterator. */
#define ITERATOR_BOUND_P(NODE) ((NODE)->common.readonly_flag)
extern
int
maybe_objc_comptypes
PROTO
((
tree
,
tree
));
extern
int
maybe_objc_comptypes
PROTO
((
tree
,
tree
));
extern
tree
maybe_building_objc_message_expr
PROTO
((
void
));
extern
tree
maybe_building_objc_message_expr
PROTO
((
void
));
...
@@ -312,6 +319,14 @@ extern tree digest_init PROTO((tree, tree, tree *, int,
...
@@ -312,6 +319,14 @@ extern tree digest_init PROTO((tree, tree, tree *, int,
extern
tree
parser_build_binary_op
PROTO
((
enum
tree_code
,
tree
,
tree
));
extern
tree
parser_build_binary_op
PROTO
((
enum
tree_code
,
tree
,
tree
));
extern
void
store_init_value
PROTO
((
tree
,
tree
));
extern
void
store_init_value
PROTO
((
tree
,
tree
));
/* in c-iterate.c */
extern
void
iterator_expand
PROTO
((
tree
));
extern
void
iterator_for_loop_start
PROTO
((
tree
));
extern
void
iterator_for_loop_end
PROTO
((
tree
));
extern
void
iterator_for_loop_record
PROTO
((
tree
));
extern
void
push_iterator_stack
PROTO
((
void
));
extern
void
pop_iterator_stack
PROTO
((
void
));
/* Set to 0 at beginning of a function definition, set to 1 if
/* Set to 0 at beginning of a function definition, set to 1 if
a return statement that specifies a return value is seen. */
a return statement that specifies a return value is seen. */
...
...
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