class.c (finish_struct_1): Replace redundant code with assertions.

* class.c (finish_struct_1): Replace redundant code with
	assertions.

From-SVN: r31454
This commit is contained in:
Mark Mitchell 2000-01-17 05:12:39 +00:00 committed by Mark Mitchell
parent 39ac3e4f68
commit 1eb4bea9e9
2 changed files with 14 additions and 11 deletions

View File

@ -1,5 +1,8 @@
2000-01-16 Mark Mitchell <mark@codesourcery.com>
* class.c (finish_struct_1): Replace redundant code with
assertions.
* cp-tree.h (flag_new_abi): Move.
(flag_use_cxa_atexit): Likewise.
(flag_honor_std): Likewise.

View File

@ -4906,18 +4906,18 @@ finish_struct_1 (t)
if (TYPE_CONTAINS_VPTR_P (t))
{
if (TYPE_BINFO_VTABLE (t))
my_friendly_assert (DECL_VIRTUAL_P (TYPE_BINFO_VTABLE (t)),
20000116);
if (!CLASSTYPE_HAS_PRIMARY_BASE_P (t))
my_friendly_assert (TYPE_BINFO_VIRTUALS (t) == NULL_TREE,
20000116);
CLASSTYPE_VSIZE (t) = has_virtual;
if (CLASSTYPE_HAS_PRIMARY_BASE_P (t))
{
if (pending_virtuals)
TYPE_BINFO_VIRTUALS (t) = chainon (TYPE_BINFO_VIRTUALS (t),
pending_virtuals);
}
else if (has_virtual)
{
TYPE_BINFO_VIRTUALS (t) = pending_virtuals;
DECL_VIRTUAL_P (TYPE_BINFO_VTABLE (t)) = 1;
}
/* Entries for virtual functions defined in the primary base are
followed by entries for new functions unique to this class. */
TYPE_BINFO_VIRTUALS (t)
= chainon (TYPE_BINFO_VIRTUALS (t), pending_virtuals);
}
/* Now lay out the virtual function table. */