From b3cc01b02bd728a8b10e362b6f23566cbd451003 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 26 Nov 2002 18:11:51 +0000 Subject: * libc/string/memset.c (memset): Move initialization of 'd' earlier in function. --- newlib/libc/string/memset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/libc/string/memset.c') diff --git a/newlib/libc/string/memset.c b/newlib/libc/string/memset.c index 41b7d03ba..6f98cac62 100644 --- a/newlib/libc/string/memset.c +++ b/newlib/libc/string/memset.c @@ -59,13 +59,13 @@ _DEFUN (memset, (m, c, n), int i; unsigned long buffer; unsigned long *aligned_addr; + unsigned int d = c & 0xff; if (!TOO_SMALL (n) && !UNALIGNED (m)) { /* If we get this far, we know that n is large and m is word-aligned. */ /* To avoid sign extention, copy C to an unsigned variable. */ - unsigned int d = c & 0xff; aligned_addr = (unsigned long*)m; -- cgit v1.2.3