diff options
Diffstat (limited to 'sys/lib/libkern/arch/mips/strcmp.S')
-rw-r--r-- | sys/lib/libkern/arch/mips/strcmp.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/libkern/arch/mips/strcmp.S b/sys/lib/libkern/arch/mips/strcmp.S index 02b661e11d7..6c6b7a503c5 100644 --- a/sys/lib/libkern/arch/mips/strcmp.S +++ b/sys/lib/libkern/arch/mips/strcmp.S @@ -1,11 +1,11 @@ #include "DEFS.h" - .set noreorder /* * NOTE: this version assumes unsigned chars in order to be "8 bit clean". */ LEAF(strcmp) + .set noreorder 1: lbu t0, 0(a0) # get two bytes and compare them lbu t1, 0(a1) |