From 7530e3031d8d7a9eb2c8b4c2cad069ba9c2c80df Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Mon, 3 Nov 2014 19:02:34 -0800 Subject: [PATCH] perlasm/x86_64-xlate.pl: handle inter-bank movd. (Imported from upstream's f7835e1c20836f286f00d6bcc69f154493e01475) Change-Id: I9ebf2b90a008ff88bfce0a55566f0d0977391c1e --- crypto/perlasm/x86_64-xlate.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl index 7c80dc21..ed545f26 100755 --- a/crypto/perlasm/x86_64-xlate.pl +++ b/crypto/perlasm/x86_64-xlate.pl @@ -121,7 +121,7 @@ my %globals; $self->{sz} = ""; } elsif ($self->{op} =~ /^v/) { # VEX $self->{sz} = ""; - } elsif ($self->{op} =~ /movq/ && $line =~ /%xmm/) { + } elsif ($self->{op} =~ /mov[dq]/ && $line =~ /%xmm/) { $self->{sz} = ""; } elsif ($self->{op} =~ /([a-z]{3,})([qlwb])$/) { $self->{op} = $1;