summaryrefslogtreecommitdiff
path: root/strings/bmove_upp.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings/bmove_upp.c')
-rw-r--r--strings/bmove_upp.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/strings/bmove_upp.c b/strings/bmove_upp.c
index 6ae33f8f0ef..a1a955c9c51 100644
--- a/strings/bmove_upp.c
+++ b/strings/bmove_upp.c
@@ -37,26 +37,8 @@
#include "strings_def.h"
-#if defined(MC68000) && defined(DS90)
-
-/* 0 <= len <= 65535 */
-void bmove_upp(byte *dst, const byte *src,uint len)
-{
-asm(" movl 12(a7),d0 ");
-asm(" subql #1,d0 ");
-asm(" blt .L5 ");
-asm(" movl 4(a7),a1 ");
-asm(" movl 8(a7),a0 ");
-asm(".L4: movb -(a0),-(a1) ");
-asm(" dbf d0,.L4 ");
-asm(".L5: ");
-}
-#else
-
void bmove_upp(register uchar *dst, register const uchar *src,
register size_t len)
{
while (len-- != 0) *--dst = *--src;
}
-
-#endif