Module Name: src Committed By: matt Date: Sun Aug 25 06:15:06 UTC 2013
Modified Files: src/common/lib/libc/arch/arm/string: strrchr_arm.S Log Message: move a misplaced #endif To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/common/lib/libc/arch/arm/string/strrchr_arm.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/common/lib/libc/arch/arm/string/strrchr_arm.S diff -u src/common/lib/libc/arch/arm/string/strrchr_arm.S:1.5 src/common/lib/libc/arch/arm/string/strrchr_arm.S:1.6 --- src/common/lib/libc/arch/arm/string/strrchr_arm.S:1.5 Tue Aug 20 08:05:49 2013 +++ src/common/lib/libc/arch/arm/string/strrchr_arm.S Sun Aug 25 06:15:06 2013 @@ -29,7 +29,7 @@ #include <machine/asm.h> -RCSID("$NetBSD: strrchr_arm.S,v 1.5 2013/08/20 08:05:49 matt Exp $") +RCSID("$NetBSD: strrchr_arm.S,v 1.6 2013/08/25 06:15:06 matt Exp $") #ifdef __ARMEL__ #define BYTE0 0x000000ff @@ -64,8 +64,8 @@ ENTRY(strrchr) cmp r3, r2 /* did it match? */ #ifdef __thumb__ it eq - subeq r0, r1, #1 /* yes, remember that it did */ #endif + subeq r0, r1, #1 /* yes, remember that it did */ cmp r3, #0 /* was it NUL? */ bne 2b /* no, try next byte */ RET /* return */