From: Andy Polyakov Date: Thu, 11 Sep 2014 22:06:00 +0000 (+0200) Subject: perlasm/x86_64-xlate.pl: handle inter-bank movd. X-Git-Tag: OpenSSL_1_0_1s~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c582e9d2139b9c9311718c20bbfeac37718e0b21;p=oweals%2Fopenssl.git perlasm/x86_64-xlate.pl: handle inter-bank movd. Reviewed-by: Rich Salz (cherry picked from commit 902b30df193afc3417a96ba72a81ed390bd50de3) --- diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl index 56d9b64b6f..b262b8dae9 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;