summaryrefslogtreecommitdiff
path: root/cloog-0.17.0/isl/isl_piplib.c
diff options
context:
space:
mode:
Diffstat (limited to 'cloog-0.17.0/isl/isl_piplib.c')
-rw-r--r--cloog-0.17.0/isl/isl_piplib.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/cloog-0.17.0/isl/isl_piplib.c b/cloog-0.17.0/isl/isl_piplib.c
deleted file mode 100644
index e33b981..0000000
--- a/cloog-0.17.0/isl/isl_piplib.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright 2008-2009 Katholieke Universiteit Leuven
- *
- * Use of this software is governed by the GNU LGPLv2.1 license
- *
- * Written by Sven Verdoolaege, K.U.Leuven, Departement
- * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
- */
-
-#include "isl_piplib.h"
-
-void isl_seq_cpy_to_pip(Entier *dst, isl_int *src, unsigned len)
-{
- int i;
-
- for (i = 0; i < len; ++i)
- entier_assign(dst[i], src[i]);
-}
-
-void isl_seq_cpy_from_pip(isl_int *dst, Entier *src, unsigned len)
-{
- int i;
-
- for (i = 0; i < len; ++i)
- entier_assign(dst[i], src[i]);
-}