summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-05-01 21:10:14 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-05-01 21:10:14 +0000
commit04c2d308a921a6bfc960877feb01c8b40547d765 (patch)
treedf9e54380491c398b224d0dd513aa03ace7f8165
parent588448e31231bd07fcd84a03d29dd8342980be74 (diff)
Make the implicit `l' in `impicit' explicit.
-rw-r--r--lib/libssl/src/crypto/modes/asm/ghash-parisc.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/modes/asm/ghash-parisc.pl b/lib/libssl/src/crypto/modes/asm/ghash-parisc.pl
index 8c7454ee934..535af86befd 100644
--- a/lib/libssl/src/crypto/modes/asm/ghash-parisc.pl
+++ b/lib/libssl/src/crypto/modes/asm/ghash-parisc.pl
@@ -698,7 +698,7 @@ my $depd = sub {
my ($mod,$args) = @_;
my $orig = "depd$mod\t$args";
- # I only have ",z" completer, it's impicitly encoded...
+ # I only have ",z" completer, it's implicitly encoded...
if ($args =~ /%r([0-9]+),([0-9]+),([0-9]+),%r([0-9]+)/) # format 16
{ my $opcode=(0x3c<<26)|($4<<21)|($1<<16);
my $cpos=63-$2;
@@ -724,6 +724,7 @@ foreach (split("\n",$code)) {
s/cmpb,\*/comb,/;
s/,\*/,/;
}
+ s/\bbv\b/bve/ if ($SIZE_T==8);
print $_,"\n";
}