diff options
author | David Benjamin <davidben@google.com> | 2017-05-10 20:24:56 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-05-11 23:00:23 +0200 |
commit | e195c8a2562baef0fdcae330556ed60b1e922b0e (patch) | |
tree | 7eb522b546e809ce986cbba3ce714e28ad62e49a /engines | |
parent | Rename evptests.txt to evppkey.txt (diff) | |
download | openssl-e195c8a2562baef0fdcae330556ed60b1e922b0e.tar.xz openssl-e195c8a2562baef0fdcae330556ed60b1e922b0e.zip |
Remove filename argument to x86 asm_init.
The assembler already knows the actual path to the generated file and,
in other perlasm architectures, is left to manage debug symbols itself.
Notably, in OpenSSL 1.1.x's new build system, which allows a separate
build directory, converting .pl to .s as the scripts currently do result
in the wrong paths.
This also avoids inconsistencies from some of the files using $0 and
some passing in the filename.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3431)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/asm/e_padlock-x86.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/asm/e_padlock-x86.pl b/engines/asm/e_padlock-x86.pl index bf6b312cd1..c4129e837a 100644 --- a/engines/asm/e_padlock-x86.pl +++ b/engines/asm/e_padlock-x86.pl @@ -45,7 +45,7 @@ require "x86asm.pl"; $output=pop; open STDOUT,">$output"; -&asm_init($ARGV[0],$0); +&asm_init($ARGV[0]); %PADLOCK_PREFETCH=(ecb=>128, cbc=>64); # prefetch errata $PADLOCK_CHUNK=512; # Must be a power of 2 larger than 16 |