From 9a047aaee6ce50ac6f4ed6f51f590764c4a8c4c2 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Thu, 15 Jul 2004 06:27:30 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'V10_54mdk'. --- mdk-stage1/dietlibc/i386/strcat.S | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 mdk-stage1/dietlibc/i386/strcat.S (limited to 'mdk-stage1/dietlibc/i386/strcat.S') diff --git a/mdk-stage1/dietlibc/i386/strcat.S b/mdk-stage1/dietlibc/i386/strcat.S deleted file mode 100644 index e7d74ef13..000000000 --- a/mdk-stage1/dietlibc/i386/strcat.S +++ /dev/null @@ -1,29 +0,0 @@ -.text -.align 0 -.global strcat -.type strcat,@function -strcat: - pushl %edi - pushl %esi - - movl 12(%esp), %edi - movl 16(%esp), %esi - - pushl %edi - - xorl %eax, %eax - xorl %ecx, %ecx - decl %ecx - repne scasb - decl %edi - -.Lloop: - lodsb - stosb - testb %al, %al - jnz .Lloop - - popl %eax - popl %esi - popl %edi - ret -- cgit v1.2.1