Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / COFF / cgprofile.ll
blob7ba4274efcb9ae8dd6d9aa1b97b2653ff46e2e4d
1 ; RUN: llc -filetype=asm %s -o - -mtriple x86_64-pc-windows-msvc | FileCheck %s
2 ; RUN: llc -filetype=obj %s -o %t -mtriple x86_64-pc-windows-msvc
3 ; RUN: llvm-readobj --cg-profile %t | FileCheck %s --check-prefix=OBJ
5 declare void @b()
7 define void @a() {
8   call void @b()
9   ret void
12 define void @freq(i1 %cond) {
13   br i1 %cond, label %A, label %B
15   call void @a();
16   ret void
18   call void @b();
19   ret void
22 !llvm.module.flags = !{!0}
24 !0 = !{i32 5, !"CG Profile", !1}
25 !1 = !{!2, !3, !4, !5}
26 !2 = !{ptr @a, ptr @b, i64 32}
27 !3 = !{ptr @freq, ptr @a, i64 11}
28 !4 = !{ptr @freq, ptr @b, i64 20}
29 !5 = !{ptr @freq, null, i64 20}
31 ; CHECK: .cg_profile a, b, 32
32 ; CHECK: .cg_profile freq, a, 11
33 ; CHECK: .cg_profile freq, b, 20
35 ; OBJ: CGProfile [
36 ; OBJ:  CGProfileEntry {
37 ; OBJ:    From: a
38 ; OBJ:    To: b
39 ; OBJ:    Weight: 32
40 ; OBJ:  }
41 ; OBJ:  CGProfileEntry {
42 ; OBJ:    From: freq
43 ; OBJ:    To: a
44 ; OBJ:    Weight: 11
45 ; OBJ:  }
46 ; OBJ:  CGProfileEntry {
47 ; OBJ:    From: freq
48 ; OBJ:    To: b
49 ; OBJ:    Weight: 20
50 ; OBJ:  }
51 ; OBJ:]