From f627ca82fb6c469c8cf34f04f02fe2ea006304bd Mon Sep 17 00:00:00 2001 From: Chris Metcalf Date: Thu, 11 Dec 2014 15:13:48 -0500 Subject: tile: add inhibit_loop_to_libcall to string functions Without this, on gcc 4.8.2 the built glibc crashes when memcpy or memset are invoked, since they call themselves recursively. See commit 85c2e6110c9a01ec for the generic inhibit_loop_to_libcall. --- sysdeps/tile/tilegx/memcpy.c | 2 +- sysdeps/tile/tilegx/memset.c | 2 +- sysdeps/tile/tilepro/memset.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/tile') diff --git a/sysdeps/tile/tilegx/memcpy.c b/sysdeps/tile/tilegx/memcpy.c index 5d5df19..abcaf4d 100644 --- a/sysdeps/tile/tilegx/memcpy.c +++ b/sysdeps/tile/tilegx/memcpy.c @@ -25,7 +25,7 @@ /* How many cache lines ahead should we prefetch? */ #define PREFETCH_LINES_AHEAD 3 -void * +void * inhibit_loop_to_libcall __memcpy (void *__restrict dstv, const void *__restrict srcv, size_t n) { char *__restrict dst1 = (char *) dstv; diff --git a/sysdeps/tile/tilegx/memset.c b/sysdeps/tile/tilegx/memset.c index d41b205..b794bf2 100644 --- a/sysdeps/tile/tilegx/memset.c +++ b/sysdeps/tile/tilegx/memset.c @@ -21,7 +21,7 @@ #include #include "string-endian.h" -void * +void * inhibit_loop_to_libcall __memset (void *s, int c, size_t n) { uint64_t *out64; diff --git a/sysdeps/tile/tilepro/memset.c b/sysdeps/tile/tilepro/memset.c index 85d6b81..d248634 100644 --- a/sysdeps/tile/tilepro/memset.c +++ b/sysdeps/tile/tilepro/memset.c @@ -20,7 +20,7 @@ #include #include -void * +void * inhibit_loop_to_libcall __memset (void *s, int c, size_t n) { uint32_t *out32; -- cgit v1.1