diff options
author | Andy Polyakov <appro@openssl.org> | 2011-05-16 21:52:41 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2011-05-16 21:52:41 +0200 |
commit | a3e07010b4682e757c3b1c9e17d21248d33772d6 (patch) | |
tree | 605fcaf85b28e79c3d41bb6570418c7e7cd3b7c9 /crypto/perlasm/ppc-xlate.pl | |
parent | cms-test.pl: make it work with not-so-latest perl. (diff) | |
download | openssl-a3e07010b4682e757c3b1c9e17d21248d33772d6.tar.xz openssl-a3e07010b4682e757c3b1c9e17d21248d33772d6.zip |
ppc-xlate.pl: get linux64 declaration right.
Diffstat (limited to 'crypto/perlasm/ppc-xlate.pl')
-rwxr-xr-x | crypto/perlasm/ppc-xlate.pl | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/crypto/perlasm/ppc-xlate.pl b/crypto/perlasm/ppc-xlate.pl index 4579671c97..a3edd982b6 100755 --- a/crypto/perlasm/ppc-xlate.pl +++ b/crypto/perlasm/ppc-xlate.pl @@ -31,10 +31,9 @@ my $globl = sub { $ret .= ".type $name,\@function"; last; }; - /linux.*64/ && do { $ret .= ".globl .$name\n"; - $ret .= ".type .$name,\@function\n"; + /linux.*64/ && do { $ret .= ".globl $name\n"; + $ret .= ".type $name,\@function\n"; $ret .= ".section \".opd\",\"aw\"\n"; - $ret .= ".globl $name\n"; $ret .= ".align 3\n"; $ret .= "$name:\n"; $ret .= ".quad .$name,.TOC.\@tocbase,0\n"; @@ -62,6 +61,14 @@ my $machine = sub { } ".machine $arch"; }; +my $size = sub { + if ($flavour =~ /linux.*32/) + { shift; + ".size " . join(",",@_); + } + else + { ""; } +}; my $asciz = sub { shift; my $line = join(",",@_); |