Commit fa3f8355 authored by Adam Langley's avatar Adam Langley Committed by Andy Polyakov
Browse files

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

parent 3f55ec67
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;