summaryrefslogtreecommitdiff
path: root/lib/libcrypto
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
commit71e11afc10ece23b6f2e01e94a900d3141a9fdce (patch)
tree1af1bcef408e62e50cbe61db21e89b5611e3cf20 /lib/libcrypto
parent60eed89818ae51cdf74c5cb794e310b170334ceb (diff)
Make the implicit `l' in `impicit' explicit.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/modes/asm/ghash-parisc.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/modes/asm/ghash-parisc.pl b/lib/libcrypto/modes/asm/ghash-parisc.pl
index 8c7454ee934..535af86befd 100644
--- a/lib/libcrypto/modes/asm/ghash-parisc.pl
+++ b/lib/libcrypto/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";
}