reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ;RUN: opt < %s -analyze -dot-cfg -cfg-dot-filename-prefix=%t 2>/dev/null ;RUN: FileCheck %s -input-file=%t.f.dot define void @f(i32) { entry: %check = icmp sgt i32 %0, 0 br i1 %check, label %if, label %exit, !prof !0 ; CHECK: label="W:1" ; CHECK-NOT: ["]; if: ; preds = %entry br label %exit ; CHECK: label="W:200" ; CHECK-NOT: ["]; exit: ; preds = %entry, %if ret void } !0 = !{!"branch_weights", i32 1, i32 200} |