summaryrefslogtreecommitdiff
path: root/mpn/cray
diff options
context:
space:
mode:
authorTorbjorn Granlund <tg@gmplib.org>2016-08-29 21:40:14 +0200
committerTorbjorn Granlund <tg@gmplib.org>2016-08-29 21:40:14 +0200
commit89e2ec7c663922359f49689c92e8c778f4f566bc (patch)
tree5e622726688019e65bf2fc7f6684050b7b0fddb5 /mpn/cray
parent9deac7786c2eebbb7bdb805a544e7f7f0f3f86d3 (diff)
downloadgmp-89e2ec7c663922359f49689c92e8c778f4f566bc.tar.gz
Include just gmp-impl.h, make gmp-impl.h grab gmp.h.
Diffstat (limited to 'mpn/cray')
-rw-r--r--mpn/cray/add_n.c1
-rw-r--r--mpn/cray/cfp/addmul_1.c1
-rw-r--r--mpn/cray/cfp/mul_1.c1
-rw-r--r--mpn/cray/cfp/submul_1.c1
-rw-r--r--mpn/cray/hamdist.c1
-rw-r--r--mpn/cray/ieee/addmul_1.c1
-rw-r--r--mpn/cray/ieee/invert_limb.c1
-rw-r--r--mpn/cray/ieee/mul_1.c1
-rw-r--r--mpn/cray/ieee/mul_basecase.c1
-rw-r--r--mpn/cray/ieee/sqr_basecase.c1
-rw-r--r--mpn/cray/ieee/submul_1.c1
-rw-r--r--mpn/cray/lshift.c1
-rw-r--r--mpn/cray/popcount.c1
-rw-r--r--mpn/cray/rshift.c1
-rw-r--r--mpn/cray/sub_n.c1
15 files changed, 0 insertions, 15 deletions
diff --git a/mpn/cray/add_n.c b/mpn/cray/add_n.c
index 65b53bf87..af49159ed 100644
--- a/mpn/cray/add_n.c
+++ b/mpn/cray/add_n.c
@@ -32,7 +32,6 @@ see https://www.gnu.org/licenses/. */
/* This code runs at 4 cycles/limb. It may be possible to bring it down
to 3 cycles/limb. */
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/cfp/addmul_1.c b/mpn/cray/cfp/addmul_1.c
index e1d52e4a5..9c7f383b0 100644
--- a/mpn/cray/cfp/addmul_1.c
+++ b/mpn/cray/cfp/addmul_1.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/cfp/mul_1.c b/mpn/cray/cfp/mul_1.c
index 611a9d253..33a6a0535 100644
--- a/mpn/cray/cfp/mul_1.c
+++ b/mpn/cray/cfp/mul_1.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/cfp/submul_1.c b/mpn/cray/cfp/submul_1.c
index b44c97df4..622c2756d 100644
--- a/mpn/cray/cfp/submul_1.c
+++ b/mpn/cray/cfp/submul_1.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/hamdist.c b/mpn/cray/hamdist.c
index 8eb9ba018..e7f177adf 100644
--- a/mpn/cray/hamdist.c
+++ b/mpn/cray/hamdist.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
unsigned long int
diff --git a/mpn/cray/ieee/addmul_1.c b/mpn/cray/ieee/addmul_1.c
index 6318b7c9c..ce7dfbb00 100644
--- a/mpn/cray/ieee/addmul_1.c
+++ b/mpn/cray/ieee/addmul_1.c
@@ -34,7 +34,6 @@ see https://www.gnu.org/licenses/. */
should bring it down to perhaps 7 cycles/limb. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/ieee/invert_limb.c b/mpn/cray/ieee/invert_limb.c
index f951a6e13..774a27b9a 100644
--- a/mpn/cray/ieee/invert_limb.c
+++ b/mpn/cray/ieee/invert_limb.c
@@ -28,7 +28,6 @@ You should have received copies of the GNU General Public License and the
GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
-#include "gmp.h"
#include "gmp-impl.h"
#include "longlong.h"
diff --git a/mpn/cray/ieee/mul_1.c b/mpn/cray/ieee/mul_1.c
index dad09fa8c..40139fb98 100644
--- a/mpn/cray/ieee/mul_1.c
+++ b/mpn/cray/ieee/mul_1.c
@@ -33,7 +33,6 @@ see https://www.gnu.org/licenses/. */
be hard to improve upon, even with assembly code. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/ieee/mul_basecase.c b/mpn/cray/ieee/mul_basecase.c
index 6dc845dd9..72628f724 100644
--- a/mpn/cray/ieee/mul_basecase.c
+++ b/mpn/cray/ieee/mul_basecase.c
@@ -32,7 +32,6 @@ see https://www.gnu.org/licenses/. */
That is not perfect, mainly due to vector register shortage. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
void
diff --git a/mpn/cray/ieee/sqr_basecase.c b/mpn/cray/ieee/sqr_basecase.c
index 840d3dd26..5bd4e566b 100644
--- a/mpn/cray/ieee/sqr_basecase.c
+++ b/mpn/cray/ieee/sqr_basecase.c
@@ -31,7 +31,6 @@ see https://www.gnu.org/licenses/. */
/* This is just mpn_mul_basecase with trivial modifications. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
void
diff --git a/mpn/cray/ieee/submul_1.c b/mpn/cray/ieee/submul_1.c
index 27a193901..2b3ca21c4 100644
--- a/mpn/cray/ieee/submul_1.c
+++ b/mpn/cray/ieee/submul_1.c
@@ -34,7 +34,6 @@ see https://www.gnu.org/licenses/. */
should bring it down to perhaps 7 cycles/limb. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/lshift.c b/mpn/cray/lshift.c
index 074f38041..8534e93a3 100644
--- a/mpn/cray/lshift.c
+++ b/mpn/cray/lshift.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/popcount.c b/mpn/cray/popcount.c
index 48ddab875..a79211fc7 100644
--- a/mpn/cray/popcount.c
+++ b/mpn/cray/popcount.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
unsigned long int
diff --git a/mpn/cray/rshift.c b/mpn/cray/rshift.c
index 424bede9d..9c4aa2203 100644
--- a/mpn/cray/rshift.c
+++ b/mpn/cray/rshift.c
@@ -29,7 +29,6 @@ GNU Lesser General Public License along with the GNU MP Library. If not,
see https://www.gnu.org/licenses/. */
#include <intrinsics.h>
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t
diff --git a/mpn/cray/sub_n.c b/mpn/cray/sub_n.c
index 0cc9ad1e0..f51876497 100644
--- a/mpn/cray/sub_n.c
+++ b/mpn/cray/sub_n.c
@@ -32,7 +32,6 @@ see https://www.gnu.org/licenses/. */
/* This code runs at 4 cycles/limb. It may be possible to bring it down
to 3 cycles/limb. */
-#include "gmp.h"
#include "gmp-impl.h"
mp_limb_t