diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-02-12 12:41:20 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-02-12 12:41:20 +0200 |
commit | 4785f2021aa6a23f1caf724fcc823e562584f225 (patch) | |
tree | a4e2e75a050d39096ac421f6a0d0bda9fa205263 /src/liblzma/check | |
parent | Use __APPLE__ instead of __MACH__ in ASM files. (diff) | |
download | xz-4785f2021aa6a23f1caf724fcc823e562584f225.tar.xz |
Fix jl -> jb in ASM files.
Diffstat (limited to 'src/liblzma/check')
-rw-r--r-- | src/liblzma/check/crc32_x86.S | 2 | ||||
-rw-r--r-- | src/liblzma/check/crc64_x86.S | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/liblzma/check/crc32_x86.S b/src/liblzma/check/crc32_x86.S index ff4d8a38..67f68a41 100644 --- a/src/liblzma/check/crc32_x86.S +++ b/src/liblzma/check/crc32_x86.S @@ -142,7 +142,7 @@ LZMA_CRC32: * We need 16 bytes, because the loop pre-reads eight bytes. */ cmpl $16, %edi - jl .L_rest + jb .L_rest /* Check if we have reached alignment of eight bytes. */ testl $7, %esi diff --git a/src/liblzma/check/crc64_x86.S b/src/liblzma/check/crc64_x86.S index e095ce1a..f5bb84b9 100644 --- a/src/liblzma/check/crc64_x86.S +++ b/src/liblzma/check/crc64_x86.S @@ -133,7 +133,7 @@ LZMA_CRC64: * We need eight bytes, because the loop pre-reads four bytes. */ cmpl $8, %edi - jl .L_rest + jb .L_rest /* Check if we have reached alignment of four bytes. */ testl $3, %esi @@ -197,7 +197,7 @@ LZMA_CRC64: * read it here than at the top of the loop. */ movl (%esi), %ecx - jl .L_loop + jb .L_loop /* * Process the remaining four bytes, which we have already |