RT3549: Remove obsolete files in crypto
[openssl.git] / crypto / bn / asm / x86 / div.pl
diff --git a/crypto/bn/asm/x86/div.pl b/crypto/bn/asm/x86/div.pl
deleted file mode 100644 (file)
index 0e90152..0000000
+++ /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;