New testcase that crashes the loop extractor
[oota-llvm.git] / test / Transforms / CodeExtractor / loops-outputs.c
1 #include <stdio.h>
2
3 int main(int argc, char *argv[]) {
4   int i, d=0;
5   for (i=0; i < 10; ++i)
6     d += i;
7
8   printf("separator!\n");
9   
10   for (i=0; i < 4; ++i)
11     printf("[%d]\n", d+i);
12   return 0;
13 }