From: Lasse Collin Date: Fri, 14 Dec 2007 07:53:24 +0000 (+0200) Subject: Use .globl instead of .global in x86 assembler code for X-Git-Tag: upstream/5.1.3~891 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2881570df6803eed2fe550af34574e8e61794804;p=platform%2Fupstream%2Fxz.git Use .globl instead of .global in x86 assembler code for better portability. Still needs fixing the commenting. --- diff --git a/src/liblzma/check/crc32_x86.s b/src/liblzma/check/crc32_x86.s index ad4ef09..f1ae7f7 100644 --- a/src/liblzma/check/crc32_x86.s +++ b/src/liblzma/check/crc32_x86.s @@ -45,7 +45,7 @@ init_table(void) */ .text - .global lzma_crc32 + .globl lzma_crc32 .type lzma_crc32, @function .align 16 diff --git a/src/liblzma/check/crc64_x86.s b/src/liblzma/check/crc64_x86.s index 2b8d349..f9dc595 100644 --- a/src/liblzma/check/crc64_x86.s +++ b/src/liblzma/check/crc64_x86.s @@ -38,7 +38,7 @@ init_table(void) */ .text - .global lzma_crc64 + .globl lzma_crc64 .type lzma_crc64, @function .align 16