From: Richard Biener Date: Wed, 19 Mar 2025 17:48:09 +0000 (+0100) Subject: testsuite/113634 - fixup declarations of calloc/realloc X-Git-Tag: basepoints/gcc-16~1108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12b2c414b6d0e0d1b3d328b58d654c19c30bee8c;p=thirdparty%2Fgcc.git testsuite/113634 - fixup declarations of calloc/realloc Then we can also remove the added -std=gnu17 PR testsuite/113634 * gcc.dg/Wfree-nonheap-object-7.c: Adjust calloc and realloc declarations, remove -std=gnu17. --- diff --git a/gcc/testsuite/gcc.dg/Wfree-nonheap-object-7.c b/gcc/testsuite/gcc.dg/Wfree-nonheap-object-7.c index 52cfbf9ec5d..c13b7ca6bb0 100644 --- a/gcc/testsuite/gcc.dg/Wfree-nonheap-object-7.c +++ b/gcc/testsuite/gcc.dg/Wfree-nonheap-object-7.c @@ -1,9 +1,9 @@ /* { dg-do compile } */ -/* { dg-options "-std=gnu17 -O2 -Wfree-nonheap-object" } */ +/* { dg-options "-O2 -Wfree-nonheap-object" } */ struct local_caches *get_local_caches_lcs; -void *calloc(long, long); -void *realloc(); +void *calloc(__SIZE_TYPE__, __SIZE_TYPE__); +void *realloc(void *, __SIZE_TYPE__); struct local_caches { int *t_mem_caches;