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
049d2def
Commit
049d2def
authored
Jun 18, 2001
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tidy
From-SVN: r43440
parent
3b40a214
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
gcc/cp/class.c
+6
-9
No files found.
gcc/cp/class.c
View file @
049d2def
...
...
@@ -7658,11 +7658,10 @@ dfs_accumulate_vtbl_inits (binfo, orig_binfo, rtti_binfo, t, l)
1) We are in the same place.
2) We are a primary base within a lost primary virtual base of
RTTI_BINFO.
3) We are
not primary to anything else in
RTTI_BINFO. */
3) We are
primary to something not a base of
RTTI_BINFO. */
tree
b
=
BINFO_PRIMARY_BASE_OF
(
binfo
);
tree
last
=
NULL_TREE
;
tree
primary
=
NULL_TREE
;
/* First, look through the bases we are primary to for RTTI_BINFO
or a virtual base. */
...
...
@@ -7686,14 +7685,12 @@ dfs_accumulate_vtbl_inits (binfo, orig_binfo, rtti_binfo, t, l)
if
(
b
==
rtti_binfo
||
(
b
&&
binfo_for_vbase
(
BINFO_TYPE
(
b
),
BINFO_TYPE
(
rtti_binfo
))))
primary
=
last
;
/* Otherwise, this is case 3 and we get our own. */
/* Just set our BINFO_VTABLE to point to LAST, as we may not have
set LAST's BINFO_VTABLE yet. We'll extract the actual vptr in
binfo_ctor_vtable after everything's been set up. */
vtbl
=
last
;
if
(
primary
)
/* We're the primary of some binfo that we may not have
met in the inheritance graph walk of RTTI_BINFO. Just
point to it. */
vtbl
=
primary
;
/* Otherwise, this is case 3 and we get our own. */
}
else
if
(
!
BINFO_NEW_VTABLE_MARKED
(
orig_binfo
,
BINFO_TYPE
(
rtti_binfo
)))
return
inits
;
...
...
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