From fa3f83552f53447deced45579865cec9f55a947e Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Thu, 9 Feb 2017 14:37:01 -0800 Subject: [PATCH] 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) --- 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 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; -- 2.34.1