1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

WL#5486: Remove code for unsupported platforms

Remove ASM for MC68000 and Vax.
This commit is contained in:
Davi Arnaut
2010-07-26 18:16:48 -03:00
parent 9c84153550
commit fce8b7e193
6 changed files with 1 additions and 155 deletions

View File

@ -25,23 +25,6 @@
#include <my_global.h>
#include "m_string.h"
#if defined(MC68000) && defined(DS90)
char *strcend(const char *s, pchar c)
{
asm(" movl 4(a7),a0 ");
asm(" movl 8(a7),d1 ");
asm(".L2: movb (a0)+,d0 ");
asm(" cmpb d0,d1 ");
asm(" beq .L1 ");
asm(" tstb d0 ");
asm(" bne .L2 ");
asm(".L1: movl a0,d0 ");
asm(" subql #1,d0 ");
}
#else
char *strcend(register const char *s, register pchar c)
{
for (;;)
@ -51,4 +34,3 @@ char *strcend(register const char *s, register pchar c)
}
}
#endif