re PR c++/62232 (-Wnon-virtual-dtor shouldn't warn on final classes)
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 18 Sep 2014 13:48:33 +0000 (13:48 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 18 Sep 2014 13:48:33 +0000 (13:48 +0000)
/cp
2014-09-18  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/62232
* class.c (finish_struct_1): Do not -Wnon-virtual-dtor warn
for final class types.

/testsuite
2014-09-18  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/62232
* g++.dg/cpp0x/Wdtor1.C: New.

From-SVN: r215351

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

index 1e79182e86e70fd33030360470f775d62add41bd..3a20e92612cd445c9110436ce9d34ff17e8ec26e 100644 (file)
@@ -1,3 +1,9 @@
+2014-09-18  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/62232
+       * class.c (finish_struct_1): Do not -Wnon-virtual-dtor warn
+       for final class types.
+
 2014-09-15  Jason Merrill  <jason@redhat.com>
 
        * pt.c (lookup_template_class_1): Splice out abi_tag attribute if
index 6b86ef4d9235a0de5859579d9cbd6565f427b177..010ed25ea36363b0d104db5825e1aaa0609f0ff5 100644 (file)
@@ -6506,7 +6506,8 @@ finish_struct_1 (tree t)
   /* This warning does not make sense for Java classes, since they
      cannot have destructors.  */
   if (!TYPE_FOR_JAVA (t) && warn_nonvdtor
-      && TYPE_POLYMORPHIC_P (t) && accessible_nvdtor_p (t))
+      && TYPE_POLYMORPHIC_P (t) && accessible_nvdtor_p (t)
+      && !CLASSTYPE_FINAL (t))
     warning (OPT_Wnon_virtual_dtor,
             "%q#T has virtual functions and accessible"
             " non-virtual destructor", t);
index 41e5d2bfb62b5b39187753cb7f3e8efdcbdf1d2d..3bebe31de925836f9730bff7055eef2c913430e5 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-18  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/62232
+       * g++.dg/cpp0x/Wdtor1.C: New.
+
 2014-09-18  Joseph Myers  <joseph@codesourcery.com>
 
        * gcc.dg/torture/float128-exact-underflow.c: New test.
diff --git a/gcc/testsuite/g++.dg/cpp0x/Wdtor1.C b/gcc/testsuite/g++.dg/cpp0x/Wdtor1.C
new file mode 100644 (file)
index 0000000..e376017
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/62232
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wnon-virtual-dtor" }
+
+class base
+{
+protected:
+  ~base () {}
+  virtual void foo (){};
+};
+class derive final : public base
+{
+};