Adding a simple test case in the hope that commit-diffs.pl will pick this up.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Apr 2003 21:49:13 +0000 (21:49 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 10 Apr 2003 21:49:13 +0000 (21:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5773 91177308-0d34-0410-b5e6-96231b3b80d8

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

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