From 5e002f8e9e4c6a0b808f14a3b8046fb771abb6a3 Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Tue, 9 Nov 2021 22:07:54 +1100 Subject: [PATCH] perlasm/ppc-xlate.pl: Fix build on OS X vsr2vr1() fails on OS X because the main loop doesn't strip the non-numeric register prefixes for OS X. Strip any non-numeric prefix (likely just "v") from registers before doing numeric calculation, then put the prefix back on the result. Fixes: #16995 Signed-off-by: Martin Schwenke --- crypto/perlasm/ppc-xlate.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crypto/perlasm/ppc-xlate.pl b/crypto/perlasm/ppc-xlate.pl index 47ca9b8afa9b1..2ee444045ff96 100755 --- a/crypto/perlasm/ppc-xlate.pl +++ b/crypto/perlasm/ppc-xlate.pl @@ -153,13 +153,14 @@ # vs -> v if N > 32 sub vsr2vr1 { my $in = shift; + my ($prefix, $reg) = ($in =~ m/(\D*)(\d+)/); - my $n = int($in); + my $n = int($reg); if ($n >= 32) { $n -= 32; } - return "$n"; + return "${prefix}${n}"; } # As above for first $num register args, returns list sub _vsr2vr {