summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/ModuloSched/arith-simple.c18
-rw-r--r--test/Transforms/ModuloSched/array-simple.c14
-rw-r--r--test/Transforms/ModuloSched/for-array.c17
3 files changed, 0 insertions, 49 deletions
diff --git a/test/Transforms/ModuloSched/arith-simple.c b/test/Transforms/ModuloSched/arith-simple.c
deleted file mode 100644
index 7f3b83ef27..0000000000
--- a/test/Transforms/ModuloSched/arith-simple.c
+++ /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
index 0516e4b982..0000000000
--- a/test/Transforms/ModuloSched/array-simple.c
+++ /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
index 943c076983..0000000000
--- a/test/Transforms/ModuloSched/for-array.c
+++ /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;
-}