]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: const void* memchr [PR113706]
authorJason Merrill <jason@redhat.com>
Mon, 12 Feb 2024 23:24:00 +0000 (18:24 -0500)
committerJason Merrill <jason@redhat.com>
Wed, 1 May 2024 15:44:13 +0000 (11:44 -0400)
The C++ standard specifies that the <string.h> functions have const and
non-const overloads, unlike C's single function with const argument and
non-const return.  Many systems don't actually implement this, but only add
an overload with non-const argument, so both end up having non-const return.
Solaris <string.h> does what the standard says, but we were penalizing it by
not recognizing the const overload as the built-in memchr.

PR c++/113706

gcc/cp/ChangeLog:

* decl.cc (decls_match): Handle memchr return type being
const-qualified.

gcc/testsuite/ChangeLog:

* g++.dg/opt/const-builtin1.C: New test.
* c-c++-common/pr103798-2.c: Remove xfail.

gcc/cp/decl.cc
gcc/testsuite/c-c++-common/pr103798-2.c
gcc/testsuite/g++.dg/opt/const-builtin1.C [new file with mode: 0644]

index d88e069865279e2e1295be50223dd3da71d0ee77..df8553341334575a5cfd7fe1d2b8452f35ccf151 100644 (file)
@@ -1156,6 +1156,16 @@ decls_match (tree newdecl, tree olddecl, bool record_versions /* = true */)
       tree r2 = fndecl_declared_return_type (olddecl);
       tree r1 = fndecl_declared_return_type (newdecl);
 
+      /* For memchr et al, allow const void* return type (as specified by C++)
+        when we expect void* (as in C).  */
+      if (DECL_IS_UNDECLARED_BUILTIN (olddecl)
+         && DECL_EXTERN_C_P (olddecl)
+         && !same_type_p (r1, r2)
+         && TREE_CODE (r1) == POINTER_TYPE
+         && TREE_CODE (r2) == POINTER_TYPE
+         && comp_ptr_ttypes (TREE_TYPE (r1), TREE_TYPE (r2)))
+       r2 = r1;
+
       tree p1 = TYPE_ARG_TYPES (f1);
       tree p2 = TYPE_ARG_TYPES (f2);
 
index 83cdfaa1660bb3df71dd80a3a1aec4dcf6516f6d..e7e99c3679ecbcb802a0f768fdcaaee89f54f465 100644 (file)
@@ -27,5 +27,4 @@ main ()
  return 0;
 }
 
-/* See PR c++/113706 for the xfail.  */
-/* { dg-final { scan-assembler-not "memchr" { xfail { c++ && { *-*-solaris2* *-*-vxworks* } } } } } */
+/* { dg-final { scan-assembler-not "memchr" } } */
diff --git a/gcc/testsuite/g++.dg/opt/const-builtin1.C b/gcc/testsuite/g++.dg/opt/const-builtin1.C
new file mode 100644 (file)
index 0000000..8b99872
--- /dev/null
@@ -0,0 +1,33 @@
+// PR c++/113706
+/* A variant of the pr103798-2.c test with const void * memchr return type, as
+   specified by the C++ standard.  */
+/* { dg-do run } */
+/* { dg-options "-O2 -fdump-tree-optimized -save-temps" } */
+
+extern "C" const void *memchr (const void *, int, __SIZE_TYPE__); // { dg-bogus "built-in" }
+
+__attribute__ ((weak))
+int
+f (int a)
+{
+   return memchr ("aE", a, 2) != 0;
+}
+
+__attribute__ ((weak))
+int
+g (char a)
+{
+  return a == 'a' || a == 'E';
+}
+
+int
+main ()
+{
+ for (int i = 0; i < 255; i++)
+   if (f (i + 256) != g (i + 256))
+     __builtin_abort ();
+
+ return 0;
+}
+
+/* { dg-final { scan-assembler-not "memchr" } } */