diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-21 02:24:07 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-21 02:24:07 +0000 |
commit | abfc5558bf4beb7dc381d93baaec4a9a3e4eba7b (patch) | |
tree | 8763531b221e50bbbafb457cc1688e9ab4175516 /libc/string/generic/memmove.c | |
parent | 293cef1de02c36f58a48bcdbe2d385059ea04828 (diff) | |
download | uClibc-alpine-abfc5558bf4beb7dc381d93baaec4a9a3e4eba7b.tar.bz2 uClibc-alpine-abfc5558bf4beb7dc381d93baaec4a9a3e4eba7b.tar.xz |
More merging from trunk.
Diffstat (limited to 'libc/string/generic/memmove.c')
-rw-r--r-- | libc/string/generic/memmove.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libc/string/generic/memmove.c b/libc/string/generic/memmove.c index 0e51ea771..68caacd78 100644 --- a/libc/string/generic/memmove.c +++ b/libc/string/generic/memmove.c @@ -29,8 +29,7 @@ libc_hidden_proto(memcpy) static void _wordcopy_bwd_aligned (long int dstp, long int srcp, size_t len) { - op_t a0 = 0; - op_t a1 = 0; + op_t a0, a1; switch (len % 8) { @@ -134,10 +133,7 @@ static void _wordcopy_bwd_aligned (long int dstp, long int srcp, size_t len) static void _wordcopy_bwd_dest_aligned (long int dstp, long int srcp, size_t len) { - op_t a0 = 0; - op_t a1 = 0; - op_t a2 = 0; - op_t a3 = 0; + op_t a0, a1, a2, a3; int sh_1, sh_2; /* Calculate how to shift a word read at the memory operation |