Minor ppc-xlate.pl update.
authorAndy Polyakov <appro@openssl.org>
Mon, 5 Jun 2006 09:42:31 +0000 (09:42 +0000)
committerAndy Polyakov <appro@openssl.org>
Mon, 5 Jun 2006 09:42:31 +0000 (09:42 +0000)
crypto/perlasm/ppc-xlate.pl

index a3b5b0e37bcc9c9fdf43e92e4cf84aa8824f488a..bedaa99cb46ad064775b82cd9d3a4d4a5dc72a23 100755 (executable)
@@ -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; }
     }