Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / test-local.ll
blobbdb91aca29e4f8c4d8843ff85342d743a31950ed
1 ; RUN: %lli -jit-kind=mcjit %s > /dev/null
2 ; RUN: %lli %s > /dev/null
4 define i32 @main() nounwind uwtable {
5 entry:
6   %retval = alloca i32, align 4
7   %count = alloca i32, align 4
8   %i = alloca i32, align 4
9   store i32 0, ptr %retval
10   store i32 0, ptr %count, align 4
11   store i32 0, ptr %i, align 4
12   br label %for.cond
14 for.cond:                                         ; preds = %for.inc, %entry
15   %0 = load i32, ptr %i, align 4
16   %cmp = icmp slt i32 %0, 50
17   br i1 %cmp, label %for.body, label %for.end
19 for.body:                                         ; preds = %for.cond
20   %1 = load i32, ptr %count, align 4
21   %inc = add nsw i32 %1, 1
22   store i32 %inc, ptr %count, align 4
23   br label %for.inc
25 for.inc:                                          ; preds = %for.body
26   %2 = load i32, ptr %i, align 4
27   %inc1 = add nsw i32 %2, 1
28   store i32 %inc1, ptr %i, align 4
29   br label %for.cond
31 for.end:                                          ; preds = %for.cond
32   %3 = load i32, ptr %count, align 4
33   %sub = sub nsw i32 %3, 50
34   ret i32 %sub