Make a few more asm modules conform: last argument is output file

Fixes #5310

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5315)
This commit is contained in:
Richard Levitte 2018-02-10 08:47:51 +01:00
parent b92013602b
commit 2bd3b626dd
6 changed files with 14 additions and 0 deletions

View File

@ -186,5 +186,7 @@ rc4_options:
.align 4
___
$output=pop;
open STDOUT,">$output";
print $code;
close STDOUT;

View File

@ -1573,6 +1573,9 @@ ___
}
}
$output=pop;
open STDOUT,">$output";
foreach (split($/,$code)) {
s/\`([^\`]*)\`/eval $1/ge;

View File

@ -476,5 +476,7 @@ iotas:
.asciz "Keccak-1600 absorb and squeeze for AVX2, CRYPTOGAMS by <appro\@openssl.org>"
___
$output=pop;
open STDOUT,">$output";
print $code;
close STDOUT;

View File

@ -545,5 +545,7 @@ iotas:
.asciz "Keccak-1600 absorb and squeeze for AVX-512F, CRYPTOGAMS by <appro\@openssl.org>"
___
$output=pop;
open STDOUT,">$output";
print $code;
close STDOUT;

View File

@ -386,5 +386,7 @@ iotas:
.asciz "Keccak-1600 absorb and squeeze for AVX512VL, CRYPTOGAMS by <appro\@openssl.org>"
___
$output=pop;
open STDOUT,">$output";
print $code;
close STDOUT;

View File

@ -879,4 +879,7 @@ iotas:
.align 4
___
$output=pop;
open STDOUT,">$output";
print $code;
close STDOUT;