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
20bf3fac
Commit
20bf3fac
authored
Oct 08, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(complete_array_type): Correctly set MAXINDEX to one less than array size.
From-SVN: r5670
parent
41f2002c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/c-decl.c
+3
-2
No files found.
gcc/c-decl.c
View file @
20bf3fac
...
@@ -3675,12 +3675,13 @@ complete_array_type (type, initial_value, do_default)
...
@@ -3675,12 +3675,13 @@ complete_array_type (type, initial_value, do_default)
{
{
int
eltsize
int
eltsize
=
int_size_in_bytes
(
TREE_TYPE
(
TREE_TYPE
(
initial_value
)));
=
int_size_in_bytes
(
TREE_TYPE
(
TREE_TYPE
(
initial_value
)));
maxindex
=
build_int_2
(
TREE_STRING_LENGTH
(
initial_value
)
/
eltsize
-
1
,
0
);
maxindex
=
build_int_2
((
TREE_STRING_LENGTH
(
initial_value
)
/
eltsize
)
-
1
,
0
);
}
}
else
if
(
TREE_CODE
(
initial_value
)
==
CONSTRUCTOR
)
else
if
(
TREE_CODE
(
initial_value
)
==
CONSTRUCTOR
)
{
{
tree
elts
=
CONSTRUCTOR_ELTS
(
initial_value
);
tree
elts
=
CONSTRUCTOR_ELTS
(
initial_value
);
maxindex
=
integer_zero_node
;
maxindex
=
size_binop
(
MINUS_EXPR
,
integer_zero_node
,
size_one_node
)
;
for
(;
elts
;
elts
=
TREE_CHAIN
(
elts
))
for
(;
elts
;
elts
=
TREE_CHAIN
(
elts
))
{
{
if
(
TREE_PURPOSE
(
elts
))
if
(
TREE_PURPOSE
(
elts
))
...
...
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