summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl')
-rw-r--r--deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl14
1 files changed, 13 insertions, 1 deletions
diff --git a/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl b/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl
index 7725951d6b..f63945c8b9 100644
--- a/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl
+++ b/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl
@@ -1,4 +1,11 @@
-#!/usr/bin/env perl
+#! /usr/bin/env perl
+# Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
+#
+# Licensed under the OpenSSL license (the "License"). You may not use
+# this file except in compliance with the License. You can obtain a copy
+# in the file LICENSE in the source distribution or at
+# https://www.openssl.org/source/license.html
+
#
# ====================================================================
# Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL
@@ -49,6 +56,9 @@ $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
push(@INC,"${dir}","${dir}../../perlasm");
require "x86asm.pl";
+$output=pop;
+open STDOUT,">$output";
+
&asm_init($ARGV[0],"wp-mmx.pl");
sub L() { &data_byte(@_); }
@@ -493,3 +503,5 @@ for($i=0;$i<8;$i++) {
&function_end_B("whirlpool_block_mmx");
&asm_finish();
+
+close STDOUT;