Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / Inline / dynamic_alloca_test.ll
blob61f759c0890c76f587f1191e3f883f403bee3998
1 ; Test that functions with dynamic allocas get inlined in a case where
2 ; naively inlining it would result in a miscompilation.
3 ; Functions with dynamic allocas can only be inlined into functions that
4 ; already have dynamic allocas.
6 ; RUN: opt < %s -passes=inline -S | FileCheck %s
8 ; FIXME: This test is xfailed because the inline cost rewrite disabled *all*
9 ; inlining of functions which contain a dynamic alloca. It should be re-enabled
10 ; once that functionality is restored.
11 ; XFAIL: *
13 declare void @ext(ptr)
15 define internal void @callee(i32 %N) {
16   %P = alloca i32, i32 %N
17   call void @ext(ptr %P)
18   ret void
21 define void @foo(i32 %N) {
22 ; CHECK-LABEL: @foo(
23 ; CHECK: alloca i32, i32 %{{.*}}
24 ; CHECK: call ptr @llvm.stacksave()
25 ; CHECK: alloca i32, i32 %{{.*}}
26 ; CHECK: call void @ext
27 ; CHECK: call void @llvm.stackrestore
28 ; CHECK: ret
30 entry:
31   %P = alloca i32, i32 %N
32   call void @ext(ptr %P)
33   br label %loop
35 loop:
36   %count = phi i32 [ 0, %entry ], [ %next, %loop ]
37   %next = add i32 %count, 1
38   call void @callee(i32 %N)
39   %cond = icmp eq i32 %count, 100000
40   br i1 %cond, label %out, label %loop
42 out:
43   ret void