From 655457b9ada5ec7db398c5392e41290f3f332ea8 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 31 Aug 2009 21:59:25 +0300 Subject: Revert 43f44160b1ddcbf7e5205c37db09b3bebe7226f9 and use a fix that works on all systems using GNU assembler. Maybe the assembler code is used e.g. on Solaris x86 but let's worry about it if this doesn't work on it. --- src/liblzma/check/crc64_x86.S | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/liblzma/check/crc64_x86.S') diff --git a/src/liblzma/check/crc64_x86.S b/src/liblzma/check/crc64_x86.S index b8e5ea3f..9a63726e 100644 --- a/src/liblzma/check/crc64_x86.S +++ b/src/liblzma/check/crc64_x86.S @@ -108,11 +108,8 @@ LZMA_CRC64: */ #if (!defined(PIC) && !defined(__PIC__)) \ || (defined(_WIN32) || defined(__CYGWIN__)) - /* - * Not PIC. - * Using MAKE_SYM since $LZMA_CRC64_TABLE breaks with GCC 3. - */ - movl MAKE_SYM($, LZMA_CRC64_TABLE), %ebx + /* Not PIC */ + movl $ LZMA_CRC64_TABLE, %ebx #elif defined(__MACH__) /* Mach-O */ call .L_get_pc -- cgit v1.2.3