Use .globl instead of .global in x86 assembler code for
better portability. Still needs fixing the commenting.
This commit is contained in:
parent
698470b8f3
commit
2881570df6
|
@ -45,7 +45,7 @@ init_table(void)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.text
|
.text
|
||||||
.global lzma_crc32
|
.globl lzma_crc32
|
||||||
.type lzma_crc32, @function
|
.type lzma_crc32, @function
|
||||||
|
|
||||||
.align 16
|
.align 16
|
||||||
|
|
|
@ -38,7 +38,7 @@ init_table(void)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.text
|
.text
|
||||||
.global lzma_crc64
|
.globl lzma_crc64
|
||||||
.type lzma_crc64, @function
|
.type lzma_crc64, @function
|
||||||
|
|
||||||
.align 16
|
.align 16
|
||||||
|
|
Loading…
Reference in New Issue