diff options
Diffstat (limited to 'sysdeps/tile')
-rw-r--r-- | sysdeps/tile/memcmp.c | 15 | ||||
-rw-r--r-- | sysdeps/tile/wordcopy.c | 20 |
2 files changed, 7 insertions, 28 deletions
diff --git a/sysdeps/tile/memcmp.c b/sysdeps/tile/memcmp.c index 7ce9247546..d27ebc381c 100644 --- a/sysdeps/tile/memcmp.c +++ b/sysdeps/tile/memcmp.c @@ -95,10 +95,7 @@ static int memcmp_common_alignment (long, long, size_t) __THROW; objects (not LEN bytes!). Both SRCP1 and SRCP2 should be aligned for memory operations on `op_t's. */ static int -memcmp_common_alignment (srcp1, srcp2, len) - long int srcp1; - long int srcp2; - size_t len; +memcmp_common_alignment (long int srcp1, long int srcp2, size_t len) { op_t a0, a1; op_t b0, b1; @@ -190,10 +187,7 @@ static int memcmp_not_common_alignment (long, long, size_t) __THROW; `op_t' objects (not LEN bytes!). SRCP2 should be aligned for memory operations on `op_t', but SRCP1 *should be unaligned*. */ static int -memcmp_not_common_alignment (srcp1, srcp2, len) - long int srcp1; - long int srcp2; - size_t len; +memcmp_not_common_alignment (long int srcp1, long int srcp2, size_t len) { void * srcp1i; op_t a0, a1, a2, a3; @@ -300,10 +294,7 @@ memcmp_not_common_alignment (srcp1, srcp2, len) } int -MEMCMP (s1, s2, len) - const __ptr_t s1; - const __ptr_t s2; - size_t len; +MEMCMP (const __ptr_t s1, const __ptr_t s2, size_t len) { op_t a0; op_t b0; diff --git a/sysdeps/tile/wordcopy.c b/sysdeps/tile/wordcopy.c index 80c79eb719..1fc6831803 100644 --- a/sysdeps/tile/wordcopy.c +++ b/sysdeps/tile/wordcopy.c @@ -42,10 +42,7 @@ Both SRCP and DSTP should be aligned for memory operations on `op_t's. */ void -_wordcopy_fwd_aligned (dstp, srcp, len) - long int dstp; - long int srcp; - size_t len; +_wordcopy_fwd_aligned (long int dstp, long int srcp, size_t len) { op_t a0, a1; @@ -156,10 +153,7 @@ _wordcopy_fwd_aligned (dstp, srcp, len) *not* be aligned. */ void -_wordcopy_fwd_dest_aligned (dstp, srcp, len) - long int dstp; - long int srcp; - size_t len; +_wordcopy_fwd_dest_aligned (long int dstp, long int srcp, size_t len) { void * srci; op_t a0, a1, a2, a3; @@ -246,10 +240,7 @@ _wordcopy_fwd_dest_aligned (dstp, srcp, len) operations on `op_t's. */ void -_wordcopy_bwd_aligned (dstp, srcp, len) - long int dstp; - long int srcp; - size_t len; +_wordcopy_bwd_aligned (long int dstp, long int srcp, size_t len) { op_t a0, a1; long int srcp1; @@ -357,10 +348,7 @@ _wordcopy_bwd_aligned (dstp, srcp, len) operations on `op_t', but SRCP must *not* be aligned. */ void -_wordcopy_bwd_dest_aligned (dstp, srcp, len) - long int dstp; - long int srcp; - size_t len; +_wordcopy_bwd_dest_aligned (long int dstp, long int srcp, size_t len) { void * srci; op_t a0, a1, a2, a3; |