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

(Imported from upstream's fa3f83552f53447deced45579865cec9f55a947e.)

Change-Id: I659422a604b9d1d61334e09dff0c1de3aedb2d04
Reviewed-on: https://boringssl-review.googlesource.com/13904
Commit-Queue: David Benjamin <davidben@google.com>
Commit-Queue: Steven Valdez <svaldez@google.com>
Reviewed-by: Steven Valdez <svaldez@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
David Benjamin 2017-02-16 17:12:36 -05:00 committed by CQ bot account: commit-bot@chromium.org
parent cb1b333c2b
commit 4c4053191a

View File

@ -274,7 +274,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;