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/strcmp.S')
-rw-r--r--newlib/libc/machine/h8300/strcmp.S17
1 files changed, 0 insertions, 17 deletions
diff --git a/newlib/libc/machine/h8300/strcmp.S b/newlib/libc/machine/h8300/strcmp.S
index c5d709405..2ee31f05c 100644
--- a/newlib/libc/machine/h8300/strcmp.S
+++ b/newlib/libc/machine/h8300/strcmp.S
@@ -2,22 +2,6 @@
#include "defines.h"
-#if defined (__H8300SX__)
- .global _strcmp
-_strcmp:
- mov.l er0,er2
-loop:
- mov.b @er2+,r0l
- beq eos
- sub.b @er1+,r0l
- beq loop
- exts.l #2,er0
- rts
-eos:
- sub.b @er1,r0l
- exts.l #2,er0
- rts
-#else
.section .text
.align 2
.global _strcmp
@@ -57,4 +41,3 @@ _strcmp:
#endif
rts
.end
-#endif