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
c1b177ec
Commit
c1b177ec
authored
Apr 25, 2000
by
Martin v. Löwis
Committed by
Martin v. Löwis
Apr 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl.c (grokdeclarator): Reject VLAs as members.
From-SVN: r33399
parent
aabb6c74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
gcc/cp/ChangeLog
+4
-0
gcc/cp/decl.c
+14
-0
No files found.
gcc/cp/ChangeLog
View file @
c1b177ec
2000-04-25 Martin v. Lwis <loewis@informatik.hu-berlin.de>
* decl.c (grokdeclarator): Reject VLAs as members.
2000-04-24 Gabriel Dos Reis <gdr@codesourcery.com>
* call.c (standard_conversion): Accept conversion between
...
...
gcc/cp/decl.c
View file @
c1b177ec
...
...
@@ -10352,6 +10352,20 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist)
declarator
=
TREE_OPERAND
(
declarator
,
0
);
type
=
create_array_type_for_decl
(
dname
,
type
,
size
);
/* VLAs never work as fields. */
if
(
decl_context
==
FIELD
&&
!
processing_template_decl
&&
TREE_CODE
(
type
)
==
ARRAY_TYPE
&&
TYPE_DOMAIN
(
type
)
!=
NULL_TREE
&&
!
TREE_CONSTANT
(
TYPE_MAX_VALUE
(
TYPE_DOMAIN
(
type
))))
{
cp_error
(
"size of member `%D' is not constant"
,
dname
);
/* Proceed with arbitrary constant size, so that offset
computations don't get confused. */
type
=
create_array_type_for_decl
(
dname
,
TREE_TYPE
(
type
),
integer_one_node
);
}
ctype
=
NULL_TREE
;
}
break
;
...
...
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