summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/asm/x86/div.pl
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2011-08-03 21:43:06 +0000
committercvs2svn <admin@example.com>2011-08-03 21:43:06 +0000
commit1604a259e64964daea3d9fde3efb0acfb6fda3d4 (patch)
tree5b7a4e7b024dc65cf061c1cb0f8f7d4f598478e7 /src/lib/libcrypto/bn/asm/x86/div.pl
parent2a002e99c77affad89bbeadf44df211e3aba1317 (diff)
downloadopenbsd-OPENBSD_5_0_BASE.tar.gz
openbsd-OPENBSD_5_0_BASE.tar.bz2
openbsd-OPENBSD_5_0_BASE.zip
This commit was manufactured by cvs2git to create tag 'OPENBSD_5_0_BASE'.OPENBSD_5_0_BASE
Diffstat (limited to 'src/lib/libcrypto/bn/asm/x86/div.pl')
-rw-r--r--src/lib/libcrypto/bn/asm/x86/div.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/lib/libcrypto/bn/asm/x86/div.pl b/src/lib/libcrypto/bn/asm/x86/div.pl
deleted file mode 100644
index 0e90152caa..0000000000
--- a/src/lib/libcrypto/bn/asm/x86/div.pl
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/usr/local/bin/perl
2# x86 assember
3
4sub bn_div_words
5 {
6 local($name)=@_;
7
8 &function_begin($name,"");
9 &mov("edx",&wparam(0)); #
10 &mov("eax",&wparam(1)); #
11 &mov("ebx",&wparam(2)); #
12 &div("ebx");
13 &function_end($name);
14 }
151;