PR c++/64297
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Dec 2014 20:19:51 +0000 (20:19 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Dec 2014 20:19:51 +0000 (20:19 +0000)
* typeck.c (apply_memfn_quals): Correct wrong TYPE_CANONICAL.

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

gcc/cp/ChangeLog
gcc/cp/typeck.c
gcc/testsuite/g++.dg/cpp0x/ref-qual16.C [new file with mode: 0644]

index c14020d..afb2483 100644 (file)
@@ -1,5 +1,8 @@
 2014-12-15  Jason Merrill  <jason@redhat.com>
 
+       PR c++/64297
+       * typeck.c (apply_memfn_quals): Correct wrong TYPE_CANONICAL.
+
        N3778: Sized Deallocation
        * call.c (non_placement_deallocation_fn_p): A global sized
        operator delete is not a usual deallocation function until C++14.
index 7b39816..9368b49 100644 (file)
@@ -8945,6 +8945,12 @@ apply_memfn_quals (tree type, cp_cv_quals memfn_quals, cp_ref_qualifier rqual)
   /* This should really have a different TYPE_MAIN_VARIANT, but that gets
      complex.  */
   tree result = build_qualified_type (type, memfn_quals);
+  if (tree canon = TYPE_CANONICAL (result))
+    if (canon != result)
+      /* check_qualified_type doesn't check the ref-qualifier, so make sure
+        TYPE_CANONICAL is correct.  */
+      TYPE_CANONICAL (result)
+       = build_ref_qualified_type (canon, type_memfn_rqual (result));
   result = build_exception_variant (result, TYPE_RAISES_EXCEPTIONS (type));
   return build_ref_qualified_type (result, rqual);
 }
diff --git a/gcc/testsuite/g++.dg/cpp0x/ref-qual16.C b/gcc/testsuite/g++.dg/cpp0x/ref-qual16.C
new file mode 100644 (file)
index 0000000..1d7650b
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/64297
+// { dg-do compile { target c++11 } }
+
+struct A {
+  typedef int X;
+  template <int> X m_fn1() const;
+};
+template <typename> struct is_function {};
+is_function<int() const &> i;
+struct D {
+  template <typename Y, typename = is_function<Y>> D(Y);
+} b(&A::m_fn1<0>);