* class.c (end_of_class): Correct thinko.

From-SVN: r63829
This commit is contained in:
Mark Mitchell 2003-03-05 08:27:42 +00:00 committed by Mark Mitchell
parent 4e263cd91b
commit 8234c6c11a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-03-05 Mark Mitchell <mark@codesourcery.com>
* class.c (end_of_class): Correct thinko.
2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
* config-lang.in: Replace ${libstdcxx_version} by its value.

View File

@ -4647,7 +4647,7 @@ end_of_class (tree t, int include_virtuals_p)
if (!include_virtuals_p
&& TREE_VIA_VIRTUAL (binfo)
&& !BINFO_PRIMARY_P (binfo))
&& BINFO_PRIMARY_BASE_OF (binfo) != TYPE_BINFO (t))
continue;
offset = end_of_base (binfo);