[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Matt Caswell
matt at openssl.org
Thu Nov 10 13:03:40 UTC 2016
The branch OpenSSL_1_1_0-stable has been updated
via 53c6cbf6e9a6e4fe2433a89bf3c970355dd1e29a (commit)
from 2a7dd548a6f5d6f7f84a89c98323b70a2822406e (commit)
- Log -----------------------------------------------------------------
commit 53c6cbf6e9a6e4fe2433a89bf3c970355dd1e29a
Author: Andy Polyakov <appro at openssl.org>
Date: Tue Nov 8 20:25:09 2016 +0100
aes/asm/aesp8-ppc.pl: improve [backward] portability.
Some of stone-age assembler can't cope with r0 in address. It's actually
sensible thing to do, because r0 is shunted to 0 in address arithmetic
and by refusing r0 assembler effectively makes you understand that.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(cherry picked from commit a54aba531327285f64cf13a909bc129e9f9d5970)
-----------------------------------------------------------------------
Summary of changes:
crypto/aes/asm/aesp8-ppc.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/aes/asm/aesp8-ppc.pl b/crypto/aes/asm/aesp8-ppc.pl
index 3fdf1ec..b7e92f6 100755
--- a/crypto/aes/asm/aesp8-ppc.pl
+++ b/crypto/aes/asm/aesp8-ppc.pl
@@ -3011,7 +3011,7 @@ _aesp8_xts_enc5x:
vxor $twk0,$twk0,v31
vcipher $out0,$out0,v26
- lvsr $inpperm,r0,$taillen # $in5 is no more
+ lvsr $inpperm,0,$taillen # $in5 is no more
vcipher $out1,$out1,v26
vcipher $out2,$out2,v26
vcipher $out3,$out3,v26
More information about the openssl-commits
mailing list