Commit 8234c6c1 by Mark Mitchell Committed by Mark Mitchell

* class.c (end_of_class): Correct thinko.

From-SVN: r63829
parent 4e263cd9
2003-03-05 Mark Mitchell <mark@codesourcery.com>
* class.c (end_of_class): Correct thinko.
2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org> 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
* config-lang.in: Replace ${libstdcxx_version} by its value. * config-lang.in: Replace ${libstdcxx_version} by its value.
......
...@@ -4647,7 +4647,7 @@ end_of_class (tree t, int include_virtuals_p) ...@@ -4647,7 +4647,7 @@ end_of_class (tree t, int include_virtuals_p)
if (!include_virtuals_p if (!include_virtuals_p
&& TREE_VIA_VIRTUAL (binfo) && TREE_VIA_VIRTUAL (binfo)
&& !BINFO_PRIMARY_P (binfo)) && BINFO_PRIMARY_BASE_OF (binfo) != TYPE_BINFO (t))
continue; continue;
offset = end_of_base (binfo); offset = end_of_base (binfo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment