Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / PGOProfile / indirect_call_promotion_vla.ll
blobc4c525a0a1992f39119cb11793d0b548a71aa33e
1 ; RUN: opt < %s -passes=pgo-icall-prom -S | FileCheck %s
3 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-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 ptr null, align 8
10 define i32 @func1(ptr %x, ...) {
11 entry:
12   ret i32 0
15 define i32 @bar(ptr %x) {
16 entry:
17   %tmp = load ptr, ptr @foo, align 8
18 ; CHECK:   [[CMP:%[0-9]+]] = icmp eq ptr %tmp, @func1
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 (ptr, ...) @func1
22 ; CHECK:   br label %if.end.icp
23   %call = call i32 (ptr, ...) %tmp(ptr %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}