aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/ModuloSched/arith-simple.c
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2004-11-07 05:04:58 +0000
committerTanya Lattner <tonic@nondot.org>2004-11-07 05:04:58 +0000
commit030a552398eb8892d508fc5113c4042c77d6be41 (patch)
tree8b74741a3964a1828e65079fa58f55807be7d291 /test/Transforms/ModuloSched/arith-simple.c
parent70053a51609e4915cd2209425143a08462e69c2c (diff)
Removing old Modulosched tests since that version of modulosched does not exist anymore and llc does not support modulosched by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ModuloSched/arith-simple.c')
-rw-r--r--test/Transforms/ModuloSched/arith-simple.c18
1 files changed, 0 insertions, 18 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;
-}