From: Adam Langley Date: Thu, 9 Feb 2017 22:37:01 +0000 (-0800) Subject: perlasm/x86_64-xlate.pl: typo fix in comment. X-Git-Tag: OpenSSL_1_1_1-pre1~2439 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fa3f83552f53447deced45579865cec9f55a947e;p=oweals%2Fopenssl.git perlasm/x86_64-xlate.pl: typo fix in comment. CLA: trivial Reviewed-by: Richard Levitte Reviewed-by: Andy Polyakov (Merged from https://github.com/openssl/openssl/pull/2584) --- diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl index 09d293a446..a6cf012159 100755 --- a/crypto/perlasm/x86_64-xlate.pl +++ b/crypto/perlasm/x86_64-xlate.pl @@ -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;