diff options
Diffstat (limited to 'test/Transforms/ModuloSched/arith-simple.c')
-rw-r--r-- | test/Transforms/ModuloSched/arith-simple.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/Transforms/ModuloSched/arith-simple.c b/test/Transforms/ModuloSched/arith-simple.c deleted file mode 100644 index 7f3b83ef27..0000000000 --- a/test/Transforms/ModuloSched/arith-simple.c +++ /dev/null @@ -1,18 +0,0 @@ -#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; -} |