mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix x86 assembler on GCC 3.
Thanks to Karl Berry.
This commit is contained in:
parent
682efdc1f9
commit
43f44160b1
2 changed files with 10 additions and 4 deletions
|
@ -117,8 +117,11 @@ LZMA_CRC32:
|
|||
*/
|
||||
#if (!defined(PIC) && !defined(__PIC__)) \
|
||||
|| (defined(_WIN32) || defined(__CYGWIN__))
|
||||
/* Not PIC */
|
||||
movl $LZMA_CRC32_TABLE, %ebx
|
||||
/*
|
||||
* Not PIC.
|
||||
* Using MAKE_SYM since $LZMA_CRC32_TABLE breaks with GCC 3.
|
||||
*/
|
||||
movl MAKE_SYM($, LZMA_CRC32_TABLE), %ebx
|
||||
#elif defined(__MACH__)
|
||||
/* Mach-O */
|
||||
call .L_get_pc
|
||||
|
|
|
@ -108,8 +108,11 @@ LZMA_CRC64:
|
|||
*/
|
||||
#if (!defined(PIC) && !defined(__PIC__)) \
|
||||
|| (defined(_WIN32) || defined(__CYGWIN__))
|
||||
/* Not PIC */
|
||||
movl $LZMA_CRC64_TABLE, %ebx
|
||||
/*
|
||||
* Not PIC.
|
||||
* Using MAKE_SYM since $LZMA_CRC64_TABLE breaks with GCC 3.
|
||||
*/
|
||||
movl MAKE_SYM($, LZMA_CRC64_TABLE), %ebx
|
||||
#elif defined(__MACH__)
|
||||
/* Mach-O */
|
||||
call .L_get_pc
|
||||
|
|
Loading…
Reference in a new issue