summaryrefslogtreecommitdiffstats
path: root/crypto/aes/asm/aesfx-sparcv9.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-05-27 22:13:16 +0200
committerAndy Polyakov <appro@openssl.org>2016-05-28 22:14:13 +0200
commitff823ee89b678a92a6f74898609f73f51dae38a7 (patch)
tree1aeed8482e04f8d39a6b4bc024d66607b071228b /crypto/aes/asm/aesfx-sparcv9.pl
parent38e19eb96f2fa9c97f7786dcb988bf4b91c98149 (diff)
SPARC assembly pack: add missing .type directives.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/aes/asm/aesfx-sparcv9.pl')
-rwxr-xr-xcrypto/aes/asm/aesfx-sparcv9.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/aes/asm/aesfx-sparcv9.pl b/crypto/aes/asm/aesfx-sparcv9.pl
index 1483a68d32..c72f865552 100755
--- a/crypto/aes/asm/aesfx-sparcv9.pl
+++ b/crypto/aes/asm/aesfx-sparcv9.pl
@@ -103,6 +103,7 @@ aes_fx_encrypt:
orn %g0, $mask, $mask
retl
stda %f8, [$out + $mask]0xc0 ! partial store
+.type aes_fx_encrypt,#function
.size aes_fx_encrypt,.-aes_fx_encrypt
.globl aes_fx_decrypt
@@ -180,6 +181,7 @@ aes_fx_decrypt:
orn %g0, $mask, $mask
retl
stda %f8, [$out + $mask]0xc0 ! partial store
+.type aes_fx_decrypt,#function
.size aes_fx_decrypt,.-aes_fx_decrypt
___
}
@@ -193,6 +195,7 @@ aes_fx_set_decrypt_key:
mov -1, $inc
retl
nop
+.type aes_fx_set_decrypt_key,#function
.size aes_fx_set_decrypt_key,.-aes_fx_set_decrypt_key
.globl aes_fx_set_encrypt_key
@@ -329,6 +332,7 @@ $code.=<<___;
std %f2, [$out + 8]
retl
xor %o0, %o0, %o0 ! return 0
+.type aes_fx_set_encrypt_key,#function
.size aes_fx_set_encrypt_key,.-aes_fx_set_encrypt_key
___
}