Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / JumpThreading / update-edge-weight.ll
blob6313a87993303fd5f8ab91d791498fd10dbacc94
1 ; RUN: opt -S -passes=jump-threading %s | FileCheck %s
3 ; Test if edge weights are properly updated after jump threading.
5 ; CHECK: !2 = !{!"branch_weights", i32 1561806291, i32 585677357}
7 define void @foo(i32 %n) !prof !0 {
8 entry:
9   %cmp = icmp sgt i32 %n, 10
10   br i1 %cmp, label %if.then.1, label %if.else.1, !prof !1
12 if.then.1:
13   tail call void @a()
14   br label %if.cond
16 if.else.1:
17   tail call void @b()
18   br label %if.cond
20 if.cond:
21   %cmp1 = icmp sgt i32 %n, 5
22   br i1 %cmp1, label %if.then.2, label %if.else.2, !prof !2
24 if.then.2:
25   tail call void @c()
26   br label %if.end
28 if.else.2:
29   tail call void @d()
30   br label %if.end
32 if.end:
33   ret void
36 declare void @a()
37 declare void @b()
38 declare void @c()
39 declare void @d()
41 !0 = !{!"function_entry_count", i64 1}
42 !1 = !{!"branch_weights", i32 10, i32 5}
43 !2 = !{!"branch_weights", i32 10, i32 1}