From: Jakub Jelinek Date: Fri, 18 Feb 2022 16:21:43 +0000 (+0100) Subject: rs6000: Fix up posix_memalign call in _mm_malloc [PR104598] X-Git-Tag: basepoints/gcc-13~1019 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df5ed150ee5fbcb8255e05eed978c4af2b3d9bcc;p=thirdparty%2Fgcc.git rs6000: Fix up posix_memalign call in _mm_malloc [PR104598] The uglification changes went in one spot too far and uglified also the anem of function, posix_memalign should be called like that and not a non-existent function instead of it. 2022-02-18 Jakub Jelinek PR target/104257 PR target/104598 * config/rs6000/mm_malloc.h (_mm_malloc): Call posix_memalign rather than __posix_memalign. --- diff --git a/gcc/config/rs6000/mm_malloc.h b/gcc/config/rs6000/mm_malloc.h index 721f7563b1c7..ae47cacffade 100644 --- a/gcc/config/rs6000/mm_malloc.h +++ b/gcc/config/rs6000/mm_malloc.h @@ -47,7 +47,7 @@ _mm_malloc (size_t __size, size_t __alignment) return malloc (__size); if (__alignment < __vec_align) __alignment = __vec_align; - if (__posix_memalign (&__ptr, __alignment, __size) == 0) + if (posix_memalign (&__ptr, __alignment, __size) == 0) return __ptr; else return NULL;