projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a6e090
)
x86_64-xlate.pl: refine sign extension logic when handling lea.
author
Andy Polyakov
<appro@openssl.org>
Tue, 19 Jan 2010 16:15:23 +0000
(16:15 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Tue, 19 Jan 2010 16:15:23 +0000
(16:15 +0000)
PR: 2094,2095
crypto/perlasm/x86_64-xlate.pl
patch
|
blob
|
history
diff --git
a/crypto/perlasm/x86_64-xlate.pl
b/crypto/perlasm/x86_64-xlate.pl
index 25f8c4e83fab3d31ac60b8d1304c79a6b97cedd1..e4fc17bdbdbc8976da1b82aa99a833090e2e2f96 100755
(executable)
--- a/
crypto/perlasm/x86_64-xlate.pl
+++ b/
crypto/perlasm/x86_64-xlate.pl
@@
-243,8
+243,9
@@
my %globals;
# Solaris /usr/ccs/bin/as can't handle multiplications
# in $self->{label}, new gas requires sign extension...
use integer;
- $self->{label} =~ s/(?<![0-9a-f])(0[x0-9a-f]+)/oct($1)
<<32>>32
/egi;
+ $self->{label} =~ s/(?<![0-9a-f])(0[x0-9a-f]+)/oct($1)/egi;
$self->{label} =~ s/([0-9]+\s*[\*\/\%]\s*[0-9]+)/eval($1)/eg;
+ $self->{label} =~ s/([0-9]+)/$1<<32>>32/eg;
$self->{label} =~ s/^___imp_/__imp__/ if ($flavour eq "mingw64");
if (defined($self->{index})) {