x86_64-xlate.pl: fix typo introduced in last commit.
authorAndy Polyakov <appro@openssl.org>
Mon, 23 Nov 2009 19:51:24 +0000 (19:51 +0000)
committerAndy Polyakov <appro@openssl.org>
Mon, 23 Nov 2009 19:51:24 +0000 (19:51 +0000)
PR: 2109

crypto/perlasm/x86_64-xlate.pl

index efded8f1329e2db356bde26707dae6dea00b2975..c1d303520c140d1dd9a4d808179ebfdc9ffd50f2 100755 (executable)
@@ -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");