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/rx/strncmp.S')
-rw-r--r--newlib/libc/machine/rx/strncmp.S13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libc/machine/rx/strncmp.S b/newlib/libc/machine/rx/strncmp.S
deleted file mode 100644
index 929e9cb0a..000000000
--- a/newlib/libc/machine/rx/strncmp.S
+++ /dev/null
@@ -1,13 +0,0 @@
- .file "strncmp.S"
-
- .section .text
- .global _strncmp
- .type _strncmp,@function
-_strncmp:
- scmpu ; Perform the string comparison
- bnc 1f ; If Carry is not set skip over
- scne.L r1 ; Set result based on Z flag
- rts ;
-1: ;
- mov #-1,r1 ; Carry not set, result should be negative
- rts ;