summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2009-11-23 19:51:24 +0000
committerAndy Polyakov <appro@openssl.org>2009-11-23 19:51:24 +0000
commita8c1b19a311afd4c8f4bf30892087ecf41fe3060 (patch)
tree42a559df672c82fbad5b18eeaa730dc7a50cf115 /crypto/perlasm
parent29c8d2a54ac4929037c02f28d96b093f17fdac6b (diff)
x86_64-xlate.pl: fix typo introduced in last commit.
PR: 2109
Diffstat (limited to 'crypto/perlasm')
-rwxr-xr-xcrypto/perlasm/x86_64-xlate.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl
index efded8f132..c1d303520c 100755
--- a/crypto/perlasm/x86_64-xlate.pl
+++ b/crypto/perlasm/x86_64-xlate.pl
@@ -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");