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
b7076960
Commit
b7076960
authored
Jul 19, 2001
by
Mark Mitchell
Committed by
Mark Mitchell
Jul 19, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* class.c (finish_struct_anon): Forbid nested classes.
From-SVN: r44148
parent
69e6b1d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/class.c
+8
-1
gcc/testsuite/g++.old-deja/g++.jason/anon3.C
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
b7076960
2001-07-19 Mark Mitchell <mark@codesourcery.com>
* class.c (finish_struct_anon): Forbid nested classes.
2001-07-19 Neil Booth <neil@daikokuya.demon.co.uk>
* decl2.c: Don't include dwarfout.h and dwarf2out.h.
...
...
gcc/cp/class.c
View file @
b7076960
...
...
@@ -3132,7 +3132,14 @@ finish_struct_anon (t)
tree
elt
=
TYPE_FIELDS
(
TREE_TYPE
(
field
));
for
(;
elt
;
elt
=
TREE_CHAIN
(
elt
))
{
if
(
DECL_ARTIFICIAL
(
elt
))
/* We're generally only interested in entities the user
declared, but we also find nested classes by noticing
the TYPE_DECL that we create implicitly. You're
allowed to put one anonymous union inside another,
though, so we explicitly tolerate that. */
if
(
DECL_ARTIFICIAL
(
elt
)
&&
(
!
DECL_IMPLICIT_TYPEDEF_P
(
elt
)
||
ANON_AGGR_TYPE_P
(
TREE_TYPE
(
elt
))))
continue
;
if
(
DECL_NAME
(
elt
)
==
constructor_name
(
t
))
...
...
gcc/testsuite/g++.old-deja/g++.jason/anon3.C
View file @
b7076960
...
...
@@ -8,7 +8,7 @@ public:
private
:
union
{
float
vf
;
struct
ff
{
struct
ff
{
// ERROR - nested class in anonymous union
void
*
ptr
;
char
*
name
;
int
sz
;
...
...
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