Codebase list openssl / 4bcc6a1
Remove unused file Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5267) (cherry picked from commit a3a5d1b73db46274e2cdedaad42fda5ce5cfb2da) Rich Salz 6 years ago
1 changed file(s) with 0 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
+0
-38
crypto/bn/asm/x86.pl less more
0 #! /usr/bin/env perl
1 # Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
2 #
3 # Licensed under the OpenSSL license (the "License"). You may not use
4 # this file except in compliance with the License. You can obtain a copy
5 # in the file LICENSE in the source distribution or at
6 # https://www.openssl.org/source/license.html
7
8 push(@INC,"perlasm","../../perlasm");
9 require "x86asm.pl";
10
11 require("x86/mul_add.pl");
12 require("x86/mul.pl");
13 require("x86/sqr.pl");
14 require("x86/div.pl");
15 require("x86/add.pl");
16 require("x86/sub.pl");
17 require("x86/comba.pl");
18
19 $output = pop;
20 open STDOUT,">$output";
21
22 &asm_init($ARGV[0],$0);
23
24 &bn_mul_add_words("bn_mul_add_words");
25 &bn_mul_words("bn_mul_words");
26 &bn_sqr_words("bn_sqr_words");
27 &bn_div_words("bn_div_words");
28 &bn_add_words("bn_add_words");
29 &bn_sub_words("bn_sub_words");
30 &bn_mul_comba("bn_mul_comba8",8);
31 &bn_mul_comba("bn_mul_comba4",4);
32 &bn_sqr_comba("bn_sqr_comba8",8);
33 &bn_sqr_comba("bn_sqr_comba4",4);
34
35 &asm_finish();
36
37 close STDOUT;