diff options
Diffstat (limited to 'sysdeps/tile/wordcopy.c')
-rw-r--r-- | sysdeps/tile/wordcopy.c | 20 |
1 files changed, 4 insertions, 16 deletions
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; |