Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / CallSiteSplitting / callsite-no-splitting.ll
blob329826f80d6cdf97341c535dbc524815af4e55d7
1 ; RUN: opt < %s -passes=callsite-splitting -S | FileCheck %s
2 ; RUN: opt < %s -passes='function(callsite-splitting)' -S | FileCheck %s
4 define i32 @callee(ptr, i32, i32) {
5   ret i32 10
8 ; CHECK-LABEL: @test_preds_equal
9 ; CHECK-NOT: split
10 ; CHECK: br i1 %cmp, label %Tail, label %Tail
11 define i32 @test_preds_equal(ptr %a, i32 %v, i32 %p) {
12 TBB:
13   %cmp = icmp eq ptr %a, null
14   br i1 %cmp, label %Tail, label %Tail
15 Tail:
16   %r = call i32 @callee(ptr %a, i32 %v, i32 %p)
17   ret i32 %r
20 define void @fn1(i16 %p1) {
21 entry:
22   ret void
25 define void @fn2() {
26   ret void
28 ; Unreachable code below
30 for.inc:                                          ; preds = %for.inc
31   br i1 undef, label %for.end6, label %for.inc
33 for.end6:                                         ; preds = %for.inc
34   br i1 undef, label %lor.rhs, label %lor.end
36 lor.rhs:                                          ; preds = %for.end6
37   br label %lor.end
39 lor.end:                                          ; preds = %for.end6, %lor.rhs
40   call void @fn1(i16 0)
41   ret void