diff options
-rw-r--r-- | sys/lib/libkern/arch/m88k/ffs.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/arch/m88k/ffs.S b/sys/lib/libkern/arch/m88k/ffs.S index fedb6481cb2..aca0ca50381 100644 --- a/sys/lib/libkern/arch/m88k/ffs.S +++ b/sys/lib/libkern/arch/m88k/ffs.S @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs.S,v 1.1 2004/01/21 14:28:36 miod Exp $ */ +/* $OpenBSD: ffs.S,v 1.2 2004/01/22 20:39:06 deraadt Exp $ */ /* * Written by Miodrag Vallat, 2004 - Public Domain @@ -7,10 +7,10 @@ #include <machine/asm.h> ENTRY(ffs) - bcnd eq0, r2, 1f ! ff1(0) = 32, treat differently + bcnd eq0, r2, 1f /* ff1(0) = 32, treat differently */ ff1 r3, r2 jmp.n r1 - add r2, r3, 1 ! ff1 returns 0-31, need to increment + add r2, r3, 1 /* ff1 returns 0-31, need to increment */ 1: jmp.n r1 or r2, r0, r0 |