summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorAndrey Matyukov <andrey.matyukov@intel.com>2022-03-10 14:27:33 -0700
committerTomas Mraz <tomas@openssl.org>2022-03-14 17:08:27 +0100
commit224ea84b4054de105447cde407fa3d39004a563d (patch)
tree4064627f8e0e1cc1f632c8317800111742b514cb /crypto/perlasm
parent864853988e80517a563d2423d4fb742323995433 (diff)
aes-gcm-avx512.pl: Fixed mingw64 build
Decoration prefix for some assembler labels in aes-gcm-avx512.pl was fixed for mingw64 build. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17868)
Diffstat (limited to 'crypto/perlasm')
-rwxr-xr-xcrypto/perlasm/x86_64-xlate.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl
index 1830b25565..eab46502d0 100755
--- a/crypto/perlasm/x86_64-xlate.pl
+++ b/crypto/perlasm/x86_64-xlate.pl
@@ -811,7 +811,7 @@ my %globals;
}
last;
};
- /\.rva|\.long|\.quad/
+ /\.rva|\.long|\.quad|\.byte/
&& do { $$line =~ s/([_a-z][_a-z0-9]*)/$globals{$1} or $1/gei;
$$line =~ s/\.L/$decor/g;
last;