Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / PGOProfile / unreachable_bb.ll
blob81ee228b2822b9359cc583abf2ba2f15f94a3498
1 ; RUN: llvm-profdata merge %S/Inputs/unreachable_bb.proftext -o %t.profdata
2 ; RUN: opt < %s -passes=pgo-instr-use -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
4 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 define void @foo() {
8 entry:
9   call void @bar()
10   unreachable
11 return:
12   ret void
15 declare void @bar()
17 ;USE: !0 = !{i32 1, !"ProfileSummary", !1}
18 ;USE: !1 = !{!2, !3, !4, !5, !6, !7, !8, !9, !10, !11}
19 ;USE: !2 = !{!"ProfileFormat", !"InstrProf"}
20 ;USE: !3 = !{!"TotalCount", i64 0}