summaryrefslogtreecommitdiffstats
path: root/crypto/perlasm/ppc-xlate.pl
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/perlasm/ppc-xlate.pl')
-rwxr-xr-xcrypto/perlasm/ppc-xlate.pl16
1 files changed, 8 insertions, 8 deletions
diff --git a/crypto/perlasm/ppc-xlate.pl b/crypto/perlasm/ppc-xlate.pl
index 7e0f9e96c0..a3b5b0e37b 100755
--- a/crypto/perlasm/ppc-xlate.pl
+++ b/crypto/perlasm/ppc-xlate.pl
@@ -58,8 +58,10 @@ my $text = sub {
my $machine = sub {
my $junk = shift;
my $arch = shift;
- if ($arch eq "any" and $flavour =~ /osx/)
- { $arch = ($flavour =~ /64/) ? "ppc970-64" : "ppc970"; }
+ if ($flavour =~ /osx/)
+ { $arch =~ s/\"//g;
+ $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
+ }
".machine $arch";
};
@@ -69,12 +71,10 @@ my $machine = sub {
my $cmplw = sub {
my $f = shift;
my $cr = 0; $cr = shift if ($#_>1);
- " cmpl$f ".join(',',$cr,0,@_);
-};
-my $cmpld = sub {
- my $f = shift;
- my $cr = 0; $cr = shift if ($#_>1);
- " cmpl$f ".join(',',$cr,1,@_);
+ # Some out-of-date 32-bit GNU assembler just can't handle cmplw...
+ ($flavour =~ /linux.*32/) ?
+ " .long ".sprintf "0x%x",31<<26|$cr<<23|$_[0]<<16|$_[1]<<11|64 :
+ " cmplw ".join(',',$cr,@_);
};
my $bdnz = sub {
my $f = shift;