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

PR: 2109
This commit is contained in:
Andy Polyakov 2009-11-23 19:51:24 +00:00
parent 29c8d2a54a
commit a8c1b19a31

View File

@ -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");