Commit a8c1b19a authored by Andy Polyakov's avatar Andy Polyakov
Browse files

x86_64-xlate.pl: fix typo introduced in last commit.

PR: 2109
parent 29c8d2a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ my %globals;
	if ($gas) {
	    # Solaris /usr/ccs/bin/as can't handle multiplications
	    # in $self->{label}, new gas requires sign extentions...
	    user integer;
	    use integer;
	    $self->{label} =~ s/(?<![0-9a-f])(0[x0-9a-f]+)/oct($1)<<32>>32/egi;
	    $self->{label} =~ s/([0-9]+\s*[\*\/\%]\s*[0-9]+)/eval($1)/eg;
	    $self->{label} =~ s/^___imp_/__imp__/   if ($flavour eq "mingw64");