aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/config/rs6000/mm_malloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/mm_malloc.h b/gcc/config/rs6000/mm_malloc.h
index 721f756..ae47cac 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;