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
daa6d5ff
Commit
daa6d5ff
authored
Apr 25, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(start_decl): New args for attributes; call decl_attributes.
From-SVN: r9444
parent
c15b1d45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
gcc/c-decl.c
+5
-1
No files found.
gcc/c-decl.c
View file @
daa6d5ff
...
...
@@ -3435,9 +3435,10 @@ groktypename_in_parm_context (typename)
int
debug_temp_inits
=
1
;
tree
start_decl
(
declarator
,
declspecs
,
initialized
)
start_decl
(
declarator
,
declspecs
,
initialized
,
attributes
,
prefix_attributes
)
tree
declarator
,
declspecs
;
int
initialized
;
tree
attributes
,
prefix_attributes
;
{
register
tree
decl
=
grokdeclarator
(
declarator
,
declspecs
,
NORMAL
,
initialized
);
...
...
@@ -3531,6 +3532,9 @@ start_decl (declarator, declspecs, initialized)
if
(
TREE_CODE
(
decl
)
==
FUNCTION_DECL
)
gen_aux_info_record
(
decl
,
0
,
0
,
TYPE_ARG_TYPES
(
TREE_TYPE
(
decl
))
!=
0
);
/* Set attributes here so if duplicate decl, will have proper attributes. */
decl_attributes
(
decl
,
attributes
,
prefix_attributes
);
/* Add this decl to the current binding level.
TEM may equal DECL or it may be a previous decl of the same name. */
tem
=
pushdecl
(
decl
);
...
...
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