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
9c130398
Commit
9c130398
authored
Apr 28, 1995
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(valid_machine_attribute): Add prototype.
(is_attribute_p, lookup_attribute): Likewise. From-SVN: r9519
parent
597bc2d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletions
+15
-1
gcc/tree.h
+15
-1
No files found.
gcc/tree.h
View file @
9c130398
...
@@ -1194,7 +1194,7 @@ extern tree array_type_nelts PROTO((tree));
...
@@ -1194,7 +1194,7 @@ extern tree array_type_nelts PROTO((tree));
extern
tree
value_member
PROTO
((
tree
,
tree
));
extern
tree
value_member
PROTO
((
tree
,
tree
));
extern
tree
purpose_member
PROTO
((
tree
,
tree
));
extern
tree
purpose_member
PROTO
((
tree
,
tree
));
extern
tree
binfo_member
PROTO
((
tree
,
tree
));
extern
tree
binfo_member
PROTO
((
tree
,
tree
));
extern
int
attribute_
in_list
PROTO
((
tree
,
tree
));
extern
int
attribute_
hash_list
PROTO
((
tree
));
extern
int
attribute_list_equal
PROTO
((
tree
,
tree
));
extern
int
attribute_list_equal
PROTO
((
tree
,
tree
));
extern
int
attribute_list_contained
PROTO
((
tree
,
tree
));
extern
int
attribute_list_contained
PROTO
((
tree
,
tree
));
extern
int
tree_int_cst_equal
PROTO
((
tree
,
tree
));
extern
int
tree_int_cst_equal
PROTO
((
tree
,
tree
));
...
@@ -1217,6 +1217,20 @@ extern tree make_tree ();
...
@@ -1217,6 +1217,20 @@ extern tree make_tree ();
extern
tree
build_type_attribute_variant
PROTO
((
tree
,
tree
));
extern
tree
build_type_attribute_variant
PROTO
((
tree
,
tree
));
extern
tree
build_decl_attribute_variant
PROTO
((
tree
,
tree
));
extern
tree
build_decl_attribute_variant
PROTO
((
tree
,
tree
));
/* Return 1 if an attribute and its arguments are valid for a decl or type. */
int
valid_machine_attribute
PROTO
((
tree
,
tree
,
tree
,
tree
));
/* Given a tree node and a string, return non-zero if the tree node is
a valid attribute name for the string. */
int
is_attribute_p
PROTO
((
char
*
,
tree
));
/* Given an attribute name and a list of attributes, return the list element
of the attribute or NULL_TREE if not found. */
tree
lookup_attribute
PROTO
((
char
*
,
tree
));
/* Given a type node TYPE, and CONSTP and VOLATILEP, return a type
/* Given a type node TYPE, and CONSTP and VOLATILEP, return a type
for the same kind of data as TYPE describes.
for the same kind of data as TYPE describes.
Variants point to the "main variant" (which has neither CONST nor VOLATILE)
Variants point to the "main variant" (which has neither CONST nor VOLATILE)
...
...
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