Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2008-07-09 00:36:27 +0400
committerJeff Johnston <jjohnstn@redhat.com>2008-07-09 00:36:27 +0400
commit17bfd1e08381387af74ddbae1676b83445dbaa0e (patch)
tree4e4ae63ce4dd978d37715d6e5a7e256c4fcee58d /newlib/libc/machine
parent23672785ee63ee712b8ef05d0caa92e798683e53 (diff)
2008-07-08 Kenji Tanaka <tanaka.ken2@jp.panasonic.com>
* libc/machine/mn10300/memset.S: Fix bug where return value is incorrectly set if number of bytes set is a multiple of 4.
Diffstat (limited to 'newlib/libc/machine')
-rw-r--r--newlib/libc/machine/mn10300/memset.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/machine/mn10300/memset.S b/newlib/libc/machine/mn10300/memset.S
index ac97e090d..a927a5ef6 100644
--- a/newlib/libc/machine/mn10300/memset.S
+++ b/newlib/libc/machine/mn10300/memset.S
@@ -54,8 +54,8 @@ _memset:
inc a0
sub 1, a1
lne
- mov d3,a0
.Lepilogue:
+ mov d3,a0
ret [d2,d3,a2,a3], 16
.Lend_of_memset:
.size _memset, .Lend_of_memset - _memset