fix align directive, so we don't jmp to a bunch of nops before we get to the good stuyff

This commit is contained in:
jtc 1993-06-17 01:50:12 +00:00
parent bfb378fdd8
commit 48952b4395
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ ENTRY(ffs)
jz L1 /* ZF is set if all bits are 0 */
incl %eax /* bits numbered from 1, not 0 */
ret
L1:
.align 2
xorl %eax,%eax /* clear result */
L1: xorl %eax,%eax /* clear result */
ret