Module Name: src
Committed By: skrll
Date: Mon Sep 30 12:31:27 UTC 2013
Modified Files:
src/common/lib/libc/arch/arm/string: ffs.S
Log Message:
Appease new gas
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/common/lib/libc/arch/arm/string/ffs.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/ffs.S
diff -u src/common/lib/libc/arch/arm/string/ffs.S:1.4 src/common/lib/libc/arch/arm/string/ffs.S:1.5
--- src/common/lib/libc/arch/arm/string/ffs.S:1.4 Mon Aug 19 02:55:19 2013
+++ src/common/lib/libc/arch/arm/string/ffs.S Mon Sep 30 12:31:27 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: ffs.S,v 1.4 2013/08/19 02:55:19 matt Exp $ */
+/* $NetBSD: ffs.S,v 1.5 2013/09/30 12:31:27 skrll Exp $ */
/*
* Copyright (c) 2001 Christopher Gilbert
* All rights reserved.
@@ -30,7 +30,7 @@
#include <machine/asm.h>
-RCSID("$NetBSD: ffs.S,v 1.4 2013/08/19 02:55:19 matt Exp $")
+RCSID("$NetBSD: ffs.S,v 1.5 2013/09/30 12:31:27 skrll Exp $")
/*
* ffs - find first set bit, this algorithm isolates the first set
@@ -73,7 +73,7 @@ ARM_ENTRY(ffs)
rsbne r0, r0, r0, lsl #16 /* r0 = X * 0x0450fbaf */
/* now lookup in table indexed on top 6 bits of r0 */
- ldrbne r0, [ r2, r0, lsr #26 ]
+ ldrbne r0, [r2, r0, lsr #26 ]
RET
.text;