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