summaryrefslogtreecommitdiff
path: root/main/openssl/crypto/bn/asm/x86/div.pl
diff options
context:
space:
mode:
Diffstat (limited to 'main/openssl/crypto/bn/asm/x86/div.pl')
m---------main/openssl0
-rw-r--r--main/openssl/crypto/bn/asm/x86/div.pl15
2 files changed, 0 insertions, 15 deletions
diff --git a/main/openssl b/main/openssl
new file mode 160000
+Subproject 4d377a9ce111930d8a8f06dc0e94a892a7f6c51
diff --git a/main/openssl/crypto/bn/asm/x86/div.pl b/main/openssl/crypto/bn/asm/x86/div.pl
deleted file mode 100644
index 0e90152c..00000000
--- a/main/openssl/crypto/bn/asm/x86/div.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/local/bin/perl
-# x86 assember
-
-sub bn_div_words
- {
- local($name)=@_;
-
- &function_begin($name,"");
- &mov("edx",&wparam(0)); #
- &mov("eax",&wparam(1)); #
- &mov("ebx",&wparam(2)); #
- &div("ebx");
- &function_end($name);
- }
-1;