re PR c++/60872 (Cannot memcpy array of restricted pointers)
authorJason Merrill <jason@redhat.com>
Fri, 18 Apr 2014 18:11:22 +0000 (14:11 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 18 Apr 2014 18:11:22 +0000 (14:11 -0400)
PR c++/60872
* call.c (standard_conversion): Don't try to apply restrict to void.

From-SVN: r209520

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/testsuite/g++.dg/ext/restrict2.C [new file with mode: 0644]

index e10a227..23baee6 100644 (file)
@@ -1,3 +1,8 @@
+2014-04-18  Jason Merrill  <jason@redhat.com>
+
+       PR c++/60872
+       * call.c (standard_conversion): Don't try to apply restrict to void.
+
 2014-04-16  Marc Glisse  <marc.glisse@inria.fr>
 
        * decl.c (reshape_init_r): Handle a single element of vector type.
index 7dbe935..fbd2f83 100644 (file)
@@ -1196,9 +1196,10 @@ standard_conversion (tree to, tree from, tree expr, bool c_cast_p,
               && TREE_CODE (TREE_TYPE (from)) != FUNCTION_TYPE)
        {
          tree nfrom = TREE_TYPE (from);
+         /* Don't try to apply restrict to void.  */
+         int quals = cp_type_quals (nfrom) & ~TYPE_QUAL_RESTRICT;
          from = build_pointer_type
-           (cp_build_qualified_type (void_type_node, 
-                                     cp_type_quals (nfrom)));
+           (cp_build_qualified_type (void_type_node, quals));
          conv = build_conv (ck_ptr, from, conv);
        }
       else if (TYPE_PTRDATAMEM_P (from))
diff --git a/gcc/testsuite/g++.dg/ext/restrict2.C b/gcc/testsuite/g++.dg/ext/restrict2.C
new file mode 100644 (file)
index 0000000..f053210
--- /dev/null
@@ -0,0 +1,8 @@
+// PR c++/60872
+// { dg-options "" }
+
+typedef double *__restrict T;
+void f(T* p)
+{
+  void *p2 = p;
+}