summaryrefslogtreecommitdiffstats
path: root/crypto/modes
diff options
context:
space:
mode:
authorXiaokang Qian <xiaokang.qian@arm.com>2023-05-15 09:14:39 +0000
committerPauli <pauli@openssl.org>2023-05-31 10:50:28 +1000
commit09bd0d05a6ab9eb4965763c100edf9b86ae03d2b (patch)
tree2eff70f02a84ec13bf4c0462246a6eacf2c59e77 /crypto/modes
parenta1c8edcfc907a84d2595bc52ea7a43f4b33c7339 (diff)
Fix arm64 asm code back compatible issue with gcc 4.9.4
Fix: #20963 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20967)
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/asm/aes-gcm-armv8-unroll8_64.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/modes/asm/aes-gcm-armv8-unroll8_64.pl b/crypto/modes/asm/aes-gcm-armv8-unroll8_64.pl
index 0de7a86d22..e9f50cddfd 100644
--- a/crypto/modes/asm/aes-gcm-armv8-unroll8_64.pl
+++ b/crypto/modes/asm/aes-gcm-armv8-unroll8_64.pl
@@ -174,7 +174,7 @@ $code=<<___;
#if __ARM_MAX_ARCH__>=8
___
-$code.=".arch armv8.2-a+crypto\n.text\n";
+$code.=".arch armv8-a+crypto\n.text\n";
$input_ptr="x0"; #argument block
$bit_length="x1";