From: Misha Brukman Date: Thu, 10 Apr 2003 21:49:13 +0000 (+0000) Subject: Adding a simple test case in the hope that commit-diffs.pl will pick this up. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cf54d17f752a9ee969fea0f527ffacb354b265cb;p=oota-llvm.git Adding a simple test case in the hope that commit-diffs.pl will pick this up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5773 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/ModuloSched/array-simple.c b/test/Transforms/ModuloSched/array-simple.c new file mode 100644 index 00000000000..0516e4b982c --- /dev/null +++ b/test/Transforms/ModuloSched/array-simple.c @@ -0,0 +1,14 @@ +#include + +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; +}