perlasm/x86_64-xlate.pl: typo fix in comment.

CLA: trivial

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2584)
This commit is contained in:
Adam Langley 2017-02-09 14:37:01 -08:00 committed by Andy Polyakov
parent 3f55ec6792
commit fa3f83552f

View File

@ -279,7 +279,7 @@ my %globals;
}
# if base register is %rbp or %r13, see if it's possible to
# flip base and ingex registers [for better performance]
# flip base and index registers [for better performance]
if (!$self->{label} && $self->{index} && $self->{scale}==1 &&
$self->{base} =~ /(rbp|r13)/) {
$self->{base} = $self->{index}; $self->{index} = $1;