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:
Diffstat (limited to 'newlib/libc/machine/rx/memcpy.S')
-rw-r--r--newlib/libc/machine/rx/memcpy.S10
1 files changed, 0 insertions, 10 deletions
diff --git a/newlib/libc/machine/rx/memcpy.S b/newlib/libc/machine/rx/memcpy.S
deleted file mode 100644
index 3e0d50001..000000000
--- a/newlib/libc/machine/rx/memcpy.S
+++ /dev/null
@@ -1,10 +0,0 @@
- .file "memcpy.S"
-
- .section .text
- .global _memcpy
- .type _memcpy,@function
-_memcpy:
- mov r1, r4 ; Save a copy of DEST
- smovf ; Copy R2 (source) to R1 (dest). Stop after R3 bytes.
- mov r4, r1 ; Return DEST
- rts