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/h8300/h8sx_strcpy.S')
-rw-r--r--newlib/libc/machine/h8300/h8sx_strcpy.S14
1 files changed, 0 insertions, 14 deletions
diff --git a/newlib/libc/machine/h8300/h8sx_strcpy.S b/newlib/libc/machine/h8300/h8sx_strcpy.S
deleted file mode 100644
index db84771a0..000000000
--- a/newlib/libc/machine/h8300/h8sx_strcpy.S
+++ /dev/null
@@ -1,14 +0,0 @@
-; This file exists to provide a movsd implementation of strcpy().
-; Continue to use the generic version for targets other than h8sx.
-#ifdef __H8300SX__
-#include "setarch.h"
-
- .global _strcpy
-_strcpy:
- stm.l er4-er6,@-er7
- mov.l er0,er6
- mov.l er1,er5
-1: movsd 2f
- bra 1b
-2: rts/l er4-er6
-#endif