summaryrefslogtreecommitdiff
path: root/tune/gcdextod.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-11-21 23:10:23 +0100
committerKevin Ryde <user42@zip.com.au>2000-11-21 23:10:23 +0100
commit169202786501e2709c68bb10a83feaafc8c19a24 (patch)
tree33336370ed4939f3549721e281340b3ea402212c /tune/gcdextod.c
parent19b66be50251fc3286e744cb32d30b9f5ce67d0f (diff)
downloadgmp-169202786501e2709c68bb10a83feaafc8c19a24.tar.gz
* tune/gcdexto{s,d}.c: New files, one step gcdext, single and double.
Diffstat (limited to 'tune/gcdextod.c')
-rw-r--r--tune/gcdextod.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tune/gcdextod.c b/tune/gcdextod.c
new file mode 100644
index 000000000..c2687b704
--- /dev/null
+++ b/tune/gcdextod.c
@@ -0,0 +1,32 @@
+/* mpn/generic/gcdext.c forced to one double limb step. */
+
+/*
+Copyright 2000 Free Software Foundation, Inc.
+
+This file is part of the GNU MP Library.
+
+The GNU MP Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Lesser General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+The GNU MP Library is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+License for more details.
+
+You should have received a copy of the GNU Lesser General Public License
+along with the GNU MP Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA.
+*/
+
+#include "gmp.h"
+#include "gmp-impl.h"
+
+#undef GCDEXT_THRESHOLD
+#define GCDEXT_THRESHOLD 0
+#define WANT_GCDEXT_ONE_STEP 1
+#define __gmpn_gcdext mpn_gcdext_one_double
+
+#include "../mpn/generic/gcdext.c"