public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-7294] rs6000: Fix up posix_memalign call in _mm_malloc [PR104598]
@ 2022-02-18 16:23 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2022-02-18 16:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:df5ed150ee5fbcb8255e05eed978c4af2b3d9bcc

commit r12-7294-gdf5ed150ee5fbcb8255e05eed978c4af2b3d9bcc
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Fri Feb 18 17:21:43 2022 +0100

    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  <jakub@redhat.com>
    
            PR target/104257
            PR target/104598
            * config/rs6000/mm_malloc.h (_mm_malloc): Call posix_memalign
            rather than __posix_memalign.

Diff:
---
 gcc/config/rs6000/mm_malloc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/config/rs6000/mm_malloc.h b/gcc/config/rs6000/mm_malloc.h
index 721f7563b1c..ae47cacffad 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;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-02-18 16:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-18 16:23 [gcc r12-7294] rs6000: Fix up posix_memalign call in _mm_malloc [PR104598] Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).