[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / JumpThreading / assume-edge-dom.ll
blobf1d0f41e25053a79d725783d0c66a7e097020b52
1 ; RUN: opt -S -jump-threading < %s | FileCheck %s
3 declare i8* @escape()
4 declare void @llvm.assume(i1)
6 define i1 @test1(i1 %cond) {
7 entry:
8     br i1 %cond, label %taken, label %not_taken
10 ; CHECK-LABEL: @test1
11 ; CHECK: br i1 %cond, label %no, label %yes
12 ; CHECK: ret i1 true
14 taken:
15     %res1 = call i8* @escape()
16     %a = icmp eq i8* %res1, null
17     tail call void @llvm.assume(i1 %a)
18     br label %done
19 not_taken:
20     %res2 = call i8* @escape()
21     %b = icmp ne i8* %res2, null
22     tail call void @llvm.assume(i1 %b)
23     br label %done
25 ; An assume that can be used to simplify this comparison dominates each
26 ; predecessor branch (although no assume dominates the cmp itself). Make sure
27 ; this still can be simplified.
29 done:
30     %res = phi i8* [ %res1, %taken ], [ %res2, %not_taken ]
31     %cnd = icmp ne i8* %res, null
32     br i1 %cnd, label %yes, label %no
34 yes:
35     ret i1 true
36 no:
37     ret i1 false