From: Misha Brukman Date: Thu, 10 Apr 2003 22:01:15 +0000 (+0000) Subject: Simple arithmetic loop-based test case for modulo scheduling. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5cd8ae925584b621de2f9746b58ecb17040c30ea;p=oota-llvm.git Simple arithmetic loop-based test case for modulo scheduling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5774 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/ModuloSched/arith-simple.c b/test/Transforms/ModuloSched/arith-simple.c new file mode 100644 index 00000000000..7f3b83ef27e --- /dev/null +++ b/test/Transforms/ModuloSched/arith-simple.c @@ -0,0 +1,18 @@ +#include + +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; +}