summaryrefslogtreecommitdiff
path: root/strings/bmove_upp.c
diff options
context:
space:
mode:
authorDavi Arnaut <davi.arnaut@oracle.com>2010-07-26 18:16:48 -0300
committerDavi Arnaut <davi.arnaut@oracle.com>2010-07-26 18:16:48 -0300
commit37b8fa0b2b84f5a4800fc30259dc892102a9f067 (patch)
treed00fb872f414918ca738a38dbaaa4afed8644c08 /strings/bmove_upp.c
parente8fb899205a43e050c56e584ccbb24747034d675 (diff)
downloadmariadb-git-37b8fa0b2b84f5a4800fc30259dc892102a9f067.tar.gz
WL#5486: Remove code for unsupported platforms
Remove ASM for MC68000 and Vax.
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 fb47bda2d1d..05e786837f4 100644
--- a/strings/bmove_upp.c
+++ b/strings/bmove_upp.c
@@ -25,26 +25,8 @@
#include <my_global.h>
#include "m_string.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