PR c++/82219 - bogus -Wignored-qualifiers with template
authorJason Merrill <jason@redhat.com>
Thu, 30 Nov 2017 17:43:08 +0000 (12:43 -0500)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 30 Nov 2017 17:43:08 +0000 (12:43 -0500)
* pt.c (tsubst_copy_and_build) [STATIC_CAST_EXPR]: Suppress
-Wignored-qualifiers.

From-SVN: r255279

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/warn/Wignored-qualifiers1.C [new file with mode: 0644]

index e6851d3..bb0e2bb 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-30  Jason Merrill  <jason@redhat.com>
+
+       PR c++/82219 - bogus -Wignored-qualifiers with template
+       * pt.c (tsubst_copy_and_build) [STATIC_CAST_EXPR]: Suppress
+       -Wignored-qualifiers.
+
 2017-11-29  David Malcolm  <dmalcolm@redhat.com>
 
        * parser.c (cp_parser_unary_expression): Generate a location for
index 7e2f774..500ac0c 100644 (file)
@@ -17180,6 +17180,7 @@ tsubst_copy_and_build (tree t,
        op = RECUR (TREE_OPERAND (t, 0));
 
        warning_sentinel s(warn_useless_cast);
+       warning_sentinel s2(warn_ignored_qualifiers);
        switch (TREE_CODE (t))
          {
          case CAST_EXPR:
diff --git a/gcc/testsuite/g++.dg/warn/Wignored-qualifiers1.C b/gcc/testsuite/g++.dg/warn/Wignored-qualifiers1.C
new file mode 100644 (file)
index 0000000..5be61a6
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/82219
+// { dg-additional-options "-Wall -Wextra" }
+
+struct A {
+  template <typename T> T foo(T *) const { return static_cast<T>(0); }
+  void bar() const { foo(&i); }
+  int i;
+};