Simple arithmetic loop-based test case for modulo scheduling.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Apr 2003 22:01:15 +0000 (22:01 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Apr 2003 22:01:15 +0000 (22:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5774 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ModuloSched/arith-simple.c [new file with mode: 0644]

diff --git a/test/Transforms/ModuloSched/arith-simple.c b/test/Transforms/ModuloSched/arith-simple.c
new file mode 100644 (file)
index 0000000..7f3b83e
--- /dev/null
@@ -0,0 +1,18 @@
+#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;
+}