diff options
author | Andy Polyakov <appro@openssl.org> | 2013-06-18 10:37:00 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2013-06-30 23:15:53 +0200 |
commit | cd2693862b659099930bec2aa7344892690a6e48 (patch) | |
tree | 69fd6a82655210b9cdd5e9ff96f824d211df6f82 /crypto/aes | |
parent | 25370e93c6c084fa332fd953aafc5bd996a2345d (diff) | |
download | openssl-new-cd2693862b659099930bec2aa7344892690a6e48.tar.gz |
PA-RISC assembler pack: switch to bve in 64-bit builds.
PR: 3074
(cherry picked from commit 02450ec69dda7815ba1e7bd74eb30f0ae1eb3042)
Diffstat (limited to 'crypto/aes')
-rw-r--r-- | crypto/aes/asm/aes-parisc.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/aes/asm/aes-parisc.pl b/crypto/aes/asm/aes-parisc.pl index c36b6a2270..714dcfbbe3 100644 --- a/crypto/aes/asm/aes-parisc.pl +++ b/crypto/aes/asm/aes-parisc.pl @@ -1015,7 +1015,8 @@ foreach (split("\n",$code)) { $SIZE_T==4 ? sprintf("extru%s,%d,8,",$1,31-$2) : sprintf("extrd,u%s,%d,8,",$1,63-$2)/e; - s/,\*/,/ if ($SIZE_T==4); + s/,\*/,/ if ($SIZE_T==4); + s/\bbv\b(.*\(%r2\))/bve$1/ if ($SIZE_T==8); print $_,"\n"; } close STDOUT; |