From ebc8abfcb09d6106fcfce40f240a513e276f46e9 Mon Sep 17 00:00:00 2001 From: Jussi Kivilinna Date: Mon, 28 Oct 2013 08:54:59 +0200 Subject: Change .global to .globl in assembly files * cipher/blowfish-arm.S: Change '.global' to '.globl'. * cipher/camellia-aesni-avx-amd64.S: Ditto. * cipher/camellia-aesni-avx2-amd64.S: Ditto. * cipher/camellia-arm.S: Ditto. * cipher/cast5-amd64.S: Ditto. * cipher/rijndael-amd64.S: Ditto. * cipher/rijndael-arm.S: Ditto. * cipher/serpent-avx2-amd64.S: Ditto. * cipher/serpent-sse2-amd64.S: Ditto. * cipher/twofish-amd64.S: Ditto. * cipher/twofish-arm.S: Ditto. -- The .global keyword is used only in newer versions of GAS, so change these to older .globl for better portability. Signed-off-by: Jussi Kivilinna --- cipher/blowfish-arm.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cipher/blowfish-arm.S') diff --git a/cipher/blowfish-arm.S b/cipher/blowfish-arm.S index 43090d7d..901d0c3d 100644 --- a/cipher/blowfish-arm.S +++ b/cipher/blowfish-arm.S @@ -296,7 +296,7 @@ _gcry_blowfish_arm_do_encrypt: .size _gcry_blowfish_arm_do_encrypt,.-_gcry_blowfish_arm_do_encrypt; .align 3 -.global _gcry_blowfish_arm_encrypt_block +.globl _gcry_blowfish_arm_encrypt_block .type _gcry_blowfish_arm_encrypt_block,%function; _gcry_blowfish_arm_encrypt_block: @@ -317,7 +317,7 @@ _gcry_blowfish_arm_encrypt_block: .size _gcry_blowfish_arm_encrypt_block,.-_gcry_blowfish_arm_encrypt_block; .align 3 -.global _gcry_blowfish_arm_decrypt_block +.globl _gcry_blowfish_arm_decrypt_block .type _gcry_blowfish_arm_decrypt_block,%function; _gcry_blowfish_arm_decrypt_block: -- cgit v1.2.1