symm/rijndael-x86ish-aesni.S: Use `.extern' for external symbols.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 29 Dec 2016 14:35:06 +0000 (14:35 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 3 Apr 2017 09:10:15 +0000 (10:10 +0100)
Duh.  `.globl' is certainly the wrong thing here.

symm/rijndael-x86ish-aesni.S

index 2b99b5c..e556aa5 100644 (file)
@@ -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.