Fix jl -> jb in ASM files.

This commit is contained in:
Lasse Collin 2010-02-12 12:41:20 +02:00
parent 6b50c9429b
commit 4785f2021a
2 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ LZMA_CRC32:
* We need 16 bytes, because the loop pre-reads eight bytes. * We need 16 bytes, because the loop pre-reads eight bytes.
*/ */
cmpl $16, %edi cmpl $16, %edi
jl .L_rest jb .L_rest
/* Check if we have reached alignment of eight bytes. */ /* Check if we have reached alignment of eight bytes. */
testl $7, %esi testl $7, %esi

View File

@ -133,7 +133,7 @@ LZMA_CRC64:
* We need eight bytes, because the loop pre-reads four bytes. * We need eight bytes, because the loop pre-reads four bytes.
*/ */
cmpl $8, %edi cmpl $8, %edi
jl .L_rest jb .L_rest
/* Check if we have reached alignment of four bytes. */ /* Check if we have reached alignment of four bytes. */
testl $3, %esi testl $3, %esi
@ -197,7 +197,7 @@ LZMA_CRC64:
* read it here than at the top of the loop. * read it here than at the top of the loop.
*/ */
movl (%esi), %ecx movl (%esi), %ecx
jl .L_loop jb .L_loop
/* /*
* Process the remaining four bytes, which we have already * Process the remaining four bytes, which we have already