diff options
author | Andy Polyakov <appro@openssl.org> | 2016-09-03 00:46:01 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2016-09-08 09:05:59 +0200 |
commit | abcbf7ed7ea249609d225e43e1bce3af1fa1028c (patch) | |
tree | e41a6acaf105a09450543b1dab971bcb40d4283f /crypto/chacha | |
parent | Add missing debug strings. (diff) | |
download | openssl-abcbf7ed7ea249609d225e43e1bce3af1fa1028c.tar.xz openssl-abcbf7ed7ea249609d225e43e1bce3af1fa1028c.zip |
chacha/asm/chacha-ppc.pl: add missing .text directive.
RT#4667
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/chacha')
-rwxr-xr-x | crypto/chacha/asm/chacha-ppc.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/chacha/asm/chacha-ppc.pl b/crypto/chacha/asm/chacha-ppc.pl index b978f58c7e..8a54cbaca7 100755 --- a/crypto/chacha/asm/chacha-ppc.pl +++ b/crypto/chacha/asm/chacha-ppc.pl @@ -133,6 +133,7 @@ my ($a3,$b3,$c3,$d3)=map(($_&~3)+(($_+1)&3),($a2,$b2,$c2,$d2)); $code.=<<___; .machine "any" +.text .globl .ChaCha20_ctr32_int .align 5 |