mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
cd0d459135
* rx/crt0.S (_start): If string instructions are not allowed, avoid using SMOVF. * libc/machine/rx/memchr.S: Add non-string insn using version. * libc/machine/rx/memcpy.S: Likewise. * libc/machine/rx/memmove.S: Likewise. * libc/machine/rx/mempcpy.S: Likewise. * libc/machine/rx/strcat.S: Likewise. * libc/machine/rx/strcmp.S: Likewise. * libc/machine/rx/strcpy.S: Likewise. * libc/machine/rx/strlen.S: Likewise. * libc/machine/rx/strncat.S: Likewise. * libc/machine/rx/strncmp.S: Likewise. * libc/machine/rx/strncpy.S: Likewise.
14 lines
156 B
ArmAsm
14 lines
156 B
ArmAsm
.file "memset.S"
|
|
|
|
.section .text
|
|
.global _memset
|
|
.type _memset,@function
|
|
_memset:
|
|
mov r1, r4
|
|
sstr.b
|
|
mov r4, r1
|
|
rts
|
|
|
|
.size _memset, . - _memset
|
|
|