From 81bc2bb831d1fea04ea819b573bd6ba9ea08f3cf Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 29 Dec 2016 14:35:06 +0000 Subject: [PATCH] symm/rijndael-x86ish-aesni.S: Use `.extern' for external symbols. Duh. `.globl' is certainly the wrong thing here. --- symm/rijndael-x86ish-aesni.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symm/rijndael-x86ish-aesni.S b/symm/rijndael-x86ish-aesni.S index 2b99b5c7..e556aa53 100644 --- a/symm/rijndael-x86ish-aesni.S +++ b/symm/rijndael-x86ish-aesni.S @@ -30,8 +30,8 @@ #include "config.h" #include "asm-common.h" - .globl F(abort) - .globl F(rijndael_rcon) + .extern F(abort) + .extern F(rijndael_rcon) ///-------------------------------------------------------------------------- /// Main code. -- 2.11.0