From 5cd8ae925584b621de2f9746b58ecb17040c30ea Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 10 Apr 2003 22:01:15 +0000 Subject: [PATCH] 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 --- test/Transforms/ModuloSched/arith-simple.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/Transforms/ModuloSched/arith-simple.c 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; +}