[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / PGOProfile / indirect_call_promotion_vla.ll
blob0065031d1477c7313dcd64d923d24fab85cbfc64
1 ; RUN: opt < %s -pgo-icall-prom -S | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
6 %struct.A = type { i8 }
7 %struct.B = type { i8 }
8 @foo = common global i32 (%struct.A*, ...)* null, align 8
10 define i32 @func1(%struct.B* %x, ...) {
11 entry:
12   ret i32 0
15 define i32 @bar(%struct.A* %x) {
16 entry:
17   %tmp = load i32 (%struct.A*, ...)*, i32 (%struct.A*, ...)** @foo, align 8
18 ; CHECK:   [[CMP:%[0-9]+]] = icmp eq i32 (%struct.A*, ...)* %tmp, bitcast (i32 (%struct.B*, ...)* @func1 to i32 (%struct.A*, ...)*)
19 ; CHECK:   br i1 [[CMP]], label %if.true.direct_targ, label %if.false.orig_indirect, !prof [[BRANCH_WEIGHT:![0-9]+]]
20 ; CHECK: if.true.direct_targ:
21 ; CHECK:   [[DIRCALL_RET:%[0-9]+]] = call i32 (%struct.B*, ...) @func1
22 ; CHECK:   br label %if.end.icp
23   %call = call i32 (%struct.A*, ...) %tmp(%struct.A* %x, i32 0), !prof !1
24   ret i32 %call
27 ; CHECK: [[BRANCH_WEIGHT]] = !{!"branch_weights", i32 1500, i32 100}
28 !1 = !{!"VP", i32 0, i64 1600, i64 -2545542355363006406, i64 1500}