OSDN Git Service

PR debug/12103
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 29 Feb 2004 23:10:43 +0000 (23:10 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 29 Feb 2004 23:10:43 +0000 (23:10 +0000)
* 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78680 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/class.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/crash1.C [new file with mode: 0644]

index 2c05b71..979f578 100644 (file)
@@ -1,3 +1,10 @@
+2004-02-29  Mark Mitchell  <mark@codesourcery.com>
+
+       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  <kazu@cs.umass.edu>
 
        * call.c: Fix a comment typo.
index f09368f..3a34ce4 100644 (file)
@@ -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).  */
index 650c6fc..b5aa29d 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-29  Mark Mitchell  <mark@codesourcery.com>
+
+       PR debug/12103
+       * g++.dg/debug/crash1.C: New test.
+
 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
 
        * 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 (file)
index 0000000..4fba256
--- /dev/null
@@ -0,0 +1,17 @@
+template <typename T>
+class foo
+{
+  T t;
+};
+
+class bar;
+typedef foo<bar> foobar;
+
+class obj
+{
+  virtual foobar* yeah() = 0;
+};
+
+class bar : virtual public obj
+{
+};