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
2fa6dddd
Commit
2fa6dddd
authored
Jan 19, 2006
by
Richard Sandiford
Committed by
Richard Sandiford
Jan 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-decl.c (add_flexible_array_elts_to_size): Simplify vector accesses.
From-SVN: r109966
parent
44035081
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/c-decl.c
+2
-4
No files found.
gcc/ChangeLog
View file @
2fa6dddd
2006-01-19 Richard Sandiford <richard@codesourcery.com>
* c-decl.c (add_flexible_array_elts_to_size): Simplify vector accesses.
2006-01-19 Jan Hubicka <jh@suse.cz>
* tree-vect-patterns.c (vect_pattern_recog_1): Prevent parse error.
...
...
gcc/c-decl.c
View file @
2fa6dddd
...
...
@@ -3076,14 +3076,12 @@ set_array_declarator_inner (struct c_declarator *decl,
static
void
add_flexible_array_elts_to_size
(
tree
decl
,
tree
init
)
{
unsigned
int
size
;
tree
elt
,
type
;
size
=
VEC_length
(
constructor_elt
,
CONSTRUCTOR_ELTS
(
init
));
if
(
size
==
0
)
if
(
VEC_empty
(
constructor_elt
,
CONSTRUCTOR_ELTS
(
init
)))
return
;
elt
=
VEC_
index
(
constructor_elt
,
CONSTRUCTOR_ELTS
(
init
),
size
-
1
)
->
value
;
elt
=
VEC_
last
(
constructor_elt
,
CONSTRUCTOR_ELTS
(
init
)
)
->
value
;
type
=
TREE_TYPE
(
elt
);
if
(
TREE_CODE
(
type
)
==
ARRAY_TYPE
&&
TYPE_SIZE
(
type
)
==
NULL_TREE
...
...
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