From patchwork Mon Oct 22 09:51:47 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [GASPP] Extend armasm64 workaround for uxtw/sxtw to uxth/sxth and uxtb/sxtb as well X-Patchwork-Submitter: =?utf-8?q?Martin_Storsj=C3=B6?= X-Patchwork-Id: 64389 Message-Id: <1540201907-13744-1-git-send-email-martin@martin.st> To: libav-devel@libav.org Date: Mon, 22 Oct 2018 12:51:47 +0300 From: Martin Storsjo List-Id: libav development --- gas-preprocessor.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gas-preprocessor.pl b/gas-preprocessor.pl index 7efe3b9..669d435 100755 --- a/gas-preprocessor.pl +++ b/gas-preprocessor.pl @@ -1011,7 +1011,7 @@ sub handle_serialized_line { # Convert e.g. "add x0, x0, w0, uxtw" into "add x0, x0, w0, uxtw #0", # or "ldr x0, [x0, w0, uxtw]" into "ldr x0, [x0, w0, uxtw #0]". - $line =~ s/(uxtw|sxtw)(\s*\]?\s*)$/\1 #0\2/i; + $line =~ s/(uxt[whb]|sxt[whb])(\s*\]?\s*)$/\1 #0\2/i; # Convert "mov x0, v0.d[0]" into "umov x0, v0.d[0]" $line =~ s/\bmov\s+[xw]\d+\s*,\s*v\d+\.[ds]/u$&/i;