]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Fix prototype in gcc.dg/pr114115.c
authorJoseph Myers <josmyers@redhat.com>
Thu, 31 Oct 2024 17:56:07 +0000 (17:56 +0000)
committerJoseph Myers <josmyers@redhat.com>
Thu, 31 Oct 2024 17:56:07 +0000 (17:56 +0000)
One test failing with a -std=gnu23 default that I wanted to
investigate further is gcc.dg/pr114115.c.  Building with -std=gnu23
produces a warning:

pr114115.c:18:8: warning: 'ifunc' resolver for 'foo_ifunc2' should return 'void * (*)(void)' [-Wattribute-alias=]

It turns out that this warning (from cgraphunit.cc) is disabled for
unprototyped functions.  Fix the return type for foo_ifunc2 so the
test builds without warnings both with and without -std=gnu23.

Tested for x86_64.

* gcc.dg/pr114115.c (foo_ifunc2): Return void.

gcc/testsuite/gcc.dg/pr114115.c

index 2629f59187797b7bea20d9627a39de214833124a..5e3ef5793cde6a6202628f364da81c114db02571 100644 (file)
@@ -3,7 +3,7 @@
 /* { dg-require-profiling "-fprofile-generate" } */
 /* { dg-require-ifunc "" } */
 
-void *foo_ifunc2() __attribute__((ifunc("foo_resolver")));
+void foo_ifunc2() __attribute__((ifunc("foo_resolver")));
 
 void bar(void)
 {