summaryrefslogtreecommitdiff
path: root/cloog-0.16.3/test/basic-bounds-4.good.c
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-06-17 22:04:32 -0700
committerDan Albert <danalbert@google.com>2015-06-17 22:04:32 -0700
commit604793eab97d360aef729f064674569ee6dbf3e1 (patch)
tree468e7ca8d37e131a572544622d1651b54f3db0ee /cloog-0.16.3/test/basic-bounds-4.good.c
parent98972d5434ffcb4d11d2c81a46600e9a1cda9110 (diff)
downloadcloog-ndk-r12-release.tar.gz
Change-Id: Ic3dcd5486884b96340ed3c7d029e3204dbfec8d9
Diffstat (limited to 'cloog-0.16.3/test/basic-bounds-4.good.c')
-rw-r--r--cloog-0.16.3/test/basic-bounds-4.good.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/cloog-0.16.3/test/basic-bounds-4.good.c b/cloog-0.16.3/test/basic-bounds-4.good.c
deleted file mode 100644
index 310c948..0000000
--- a/cloog-0.16.3/test/basic-bounds-4.good.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* Generated from ../../../git/cloog/test/basic-bounds-4.cloog by CLooG 0.14.0-72-gefe2fc2 gmp bits in 0.00s. */
-extern void hash(int);
-
-/* Useful macros. */
-#define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))
-#define ceild(n,d) (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d))
-#define max(x,y) ((x) > (y) ? (x) : (y))
-#define min(x,y) ((x) < (y) ? (x) : (y))
-
-#define S1(i) { hash(1); hash(i); }
-
-void test(int M)
-{
- /* Original iterators. */
- int i;
- for (i=0;i<=M+1;i++) {
- S1(i) ;
- }
-}