summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2006-06-05 09:42:31 +0000
committerAndy Polyakov <appro@openssl.org>2006-06-05 09:42:31 +0000
commitd3a6461d71545f6658da041b186a05d8fa7d7c83 (patch)
tree12f307cc6a203d37840d7e3b33e1abee591d789a
parent17478fdede0a229943818924d1713d221d516807 (diff)
Minor ppc-xlate.pl update.
-rwxr-xr-xcrypto/perlasm/ppc-xlate.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/perlasm/ppc-xlate.pl b/crypto/perlasm/ppc-xlate.pl
index a3b5b0e37b..bedaa99cb4 100755
--- a/crypto/perlasm/ppc-xlate.pl
+++ b/crypto/perlasm/ppc-xlate.pl
@@ -106,7 +106,7 @@ while($line=<>) {
my $mnemonic = $2;
my $f = $3;
my $opcode = eval("\$$mnemonic");
- $line =~ s|\br([0-9]+)\b|$1|g if ($c ne "." and $flavour !~ /osx/);
+ $line =~ s|\bc?r([0-9]+)\b|$1|g if ($c ne "." and $flavour !~ /osx/);
if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
elsif ($mnemonic) { $line = $c.$mnemonic.$f."\t".$line; }
}