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
15c8ec1c
Commit
15c8ec1c
authored
May 22, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(valid_machine_attribute): Handle attribute on pointer-to-function
types. From-SVN: r9762
parent
4033d0e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
gcc/tree.c
+27
-0
No files found.
gcc/tree.c
View file @
15c8ec1c
...
...
@@ -3003,6 +3003,33 @@ valid_machine_attribute (attr_name, attr_args, decl, type)
TREE_TYPE
(
decl
)
=
type
;
valid
=
1
;
}
/* Handle putting a type attribute on pointer-to-function-type by putting
the attribute on the function type. */
else
if
(
TREE_CODE
(
type
)
==
POINTER_TYPE
&&
TREE_CODE
(
TREE_TYPE
(
type
))
==
FUNCTION_TYPE
&&
VALID_MACHINE_TYPE_ATTRIBUTE
(
TREE_TYPE
(
type
),
type_attr_list
,
attr_name
,
attr_args
))
{
tree
inner_type
=
TREE_TYPE
(
type
);
tree
inner_attr_list
=
TYPE_ATTRIBUTES
(
inner_type
);
tree
attr
=
lookup_attribute
(
IDENTIFIER_POINTER
(
attr_name
),
type_attr_list
);
if
(
attr
!=
NULL_TREE
)
TREE_VALUE
(
attr
)
=
attr_args
;
else
{
inner_attr_list
=
tree_cons
(
attr_name
,
attr_args
,
inner_attr_list
);
inner_type
=
build_type_attribute_variant
(
inner_type
,
inner_attr_list
);
}
if
(
decl
!=
0
)
TREE_TYPE
(
decl
)
=
build_pointer_type
(
inner_type
);
valid
=
1
;
}
#endif
return
valid
;
...
...
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