summaryrefslogtreecommitdiffstats
path: root/crypto/rc4/asm/rc4-ia64.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-07 15:48:49 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-09 11:09:26 +0100
commit3c9d51ce8ba51a8ef7b58f1f07c8d9c9df2ca665 (patch)
treebeeff003f5b078938999746e13f1d6eb7015c8a0 /crypto/rc4/asm/rc4-ia64.pl
parentac9888e5a9cc7b581323614c615b669f655512a1 (diff)
Unified - adapt the generation of rc4 assembler to use GENERATE
This gets rid of the BEGINRAW..ENDRAW sections in crypto/rc4/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/rc4/asm/rc4-ia64.pl')
-rw-r--r--crypto/rc4/asm/rc4-ia64.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/rc4/asm/rc4-ia64.pl b/crypto/rc4/asm/rc4-ia64.pl
index 49cd5b5e69..b83e53a605 100644
--- a/crypto/rc4/asm/rc4-ia64.pl
+++ b/crypto/rc4/asm/rc4-ia64.pl
@@ -164,6 +164,9 @@
# random input data).
#
+$output = pop;
+open STDOUT,">$output";
+
$phases = 4; # number of stages/phases in the pipelined-loop
$unroll_count = 6; # number of times we unrolled it
$pComI = (1 << 0);
@@ -753,3 +756,5 @@ $code.=<<___;
___
print $code;
+
+close STDOUT;