From: Mark Mitchell Date: Sun, 29 Feb 2004 23:10:43 +0000 (+0000) Subject: re PR debug/12103 (-g only crash (segfault) with a forward declared class used as... X-Git-Tag: releases/gcc-4.0.0~9732 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39876352716051ef43f55ba526b907ae86ae55a9;p=thirdparty%2Fgcc.git re PR debug/12103 (-g only crash (segfault) with a forward declared class used as a template parameter) PR debug/12103 * class.c (update_vtable_entry_for_fn): Do not go through covariance machinery if the type returned by an overrider is the same as the original. PR debug/12103 * g++.dg/debug/crash1.C: New test. From-SVN: r78680 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2c05b719ca15..979f578c0918 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2004-02-29 Mark Mitchell + + PR debug/12103 + * class.c (update_vtable_entry_for_fn): Do not go through + covariance machinery if the type returned by an overrider is the + same as the original. + 2004-02-29 Kazu Hirata * call.c: Fix a comment typo. diff --git a/gcc/cp/class.c b/gcc/cp/class.c index f09368fcb2f7..3a34ce45668d 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -2090,7 +2090,8 @@ update_vtable_entry_for_fn (tree t, tree binfo, tree fn, tree* virtuals, TREE_VALUE (purpose_member (BINFO_TYPE (virtual_offset), CLASSTYPE_VBASECLASSES (TREE_TYPE (over_return)))); - else + else if (!same_type_p (TREE_TYPE (over_return), + TREE_TYPE (base_return))) { /* There was no existing virtual thunk (which takes precedence). */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 650c6fc8700b..b5aa29d32f2c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-02-29 Mark Mitchell + + PR debug/12103 + * g++.dg/debug/crash1.C: New test. + 2004-02-29 Kazu Hirata * gcc.dg/sibcall-3.c (recurser_void1): Make it an extern diff --git a/gcc/testsuite/g++.dg/debug/crash1.C b/gcc/testsuite/g++.dg/debug/crash1.C new file mode 100644 index 000000000000..4fba256b7cce --- /dev/null +++ b/gcc/testsuite/g++.dg/debug/crash1.C @@ -0,0 +1,17 @@ +template +class foo +{ + T t; +}; + +class bar; +typedef foo foobar; + +class obj +{ + virtual foobar* yeah() = 0; +}; + +class bar : virtual public obj +{ +};