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
ecd4cee0
Commit
ecd4cee0
authored
Sep 13, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(complete_array_type): Handle TREE_PURPOSE of array constructor elements.
From-SVN: r5316
parent
03dc44a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
gcc/c-decl.c
+10
-3
No files found.
gcc/c-decl.c
View file @
ecd4cee0
...
...
@@ -3672,9 +3672,16 @@ complete_array_type (type, initial_value, do_default)
}
else
if
(
TREE_CODE
(
initial_value
)
==
CONSTRUCTOR
)
{
register
int
nelts
=
list_length
(
CONSTRUCTOR_ELTS
(
initial_value
));
maxindex
=
build_int_2
(
nelts
-
1
,
-
(
nelts
==
0
));
tree
elts
=
CONSTRUCTOR_ELTS
(
initial_value
);
maxindex
=
integer_zero_node
;
for
(;
elts
;
elts
=
TREE_CHAIN
(
elts
))
{
if
(
TREE_PURPOSE
(
elts
))
maxindex
=
TREE_PURPOSE
(
elts
);
else
maxindex
=
size_binop
(
PLUS_EXPR
,
maxindex
,
size_one_node
);
}
maxindex
=
copy_node
(
maxindex
);
}
else
{
...
...
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