Removing old Modulosched tests since that version of modulosched does not exist anymo...
authorTanya Lattner <tonic@nondot.org>
Sun, 7 Nov 2004 05:04:58 +0000 (05:04 +0000)
committerTanya Lattner <tonic@nondot.org>
Sun, 7 Nov 2004 05:04:58 +0000 (05:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17558 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ModuloSched/arith-simple.c [deleted file]
test/Transforms/ModuloSched/array-simple.c [deleted file]
test/Transforms/ModuloSched/for-array.c [deleted file]

diff --git a/test/Transforms/ModuloSched/arith-simple.c b/test/Transforms/ModuloSched/arith-simple.c
deleted file mode 100644 (file)
index 7f3b83e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-
-int main (int argc, char** argv) {
-  int a, b, c, d, i;
-  
-  a = b = c = d = 1;
-  
-  for (i=0; i < 15; i++) {
-    a = b + c;
-    c = d - b;
-    d = a + b;
-    b = c + i;
-  }
-
-  printf("a = %d, b = %d, c = %d, d = %d\n", a, b, c, d);
-
-  return 0;
-}
diff --git a/test/Transforms/ModuloSched/array-simple.c b/test/Transforms/ModuloSched/array-simple.c
deleted file mode 100644 (file)
index 0516e4b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <stdio.h>
-
-int main (int argc, char** argv) {
-  int a[25];
-  
-  for (i=0; i < 25; i++) {
-    a[i] = 24-i;
-  }
-
-  for (i=0; i < 25; i++)
-    printf("a[%d] = %d\n", i, a[i]);
-
-  return 0;
-}
diff --git a/test/Transforms/ModuloSched/for-array.c b/test/Transforms/ModuloSched/for-array.c
deleted file mode 100644 (file)
index 943c076..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <stdio.h>
-
-int main (int argc, char** argv) {
-  int i, a[25];
-  a[0] = 1;
-  
-  for (i=1; i < 24; i++) {
-    a[i-1] += i;
-    a[i] = 5;
-    a[i+1] = a[i] + a[i-1];
-  }
-
-  for (i=0; i < 25; i++)
-    printf("a[%d] = %d\n", i, a[i]);
-
-  return 0;
-}