[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Other / cfg-printer-branch-weights-percent.ll
blobb7e82aa1c6fc3e90e97c8814cc7a10286d4fa6d4
1 ;RUN: opt < %s -dot-cfg -cfg-weights -cfg-dot-filename-prefix=%t 2>/dev/null > /dev/null
2 ;RUN: FileCheck %s -input-file=%t.f.dot
4 define void @f(i32) {
5 entry:
6   %check = icmp sgt i32 %0, 0
7   br i1 %check, label %if, label %exit, !prof !0
9 ; CHECK: label="0.50%"
10 ; CHECK-NOT: ["];
11 if:                     ; preds = %entry
12   br label %exit
13 ; CHECK: label="99.50%"
14 ; CHECK-NOT: ["];
15 exit:                   ; preds = %entry, %if
16   ret void
19 !0 = !{!"branch_weights", i32 1, i32 200}