[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / inalloca-stdcall.ll
blobd18976ee2ddf5fe88181356d23b0043d53139faf
1 ; RUN: llc < %s -mtriple=i686-pc-win32 | FileCheck %s
3 %Foo = type { i32, i32 }
5 declare x86_stdcallcc void @f(ptr inalloca(%Foo) %a)
6 declare x86_stdcallcc void @i(i32 %a)
8 define void @g() {
9 ; CHECK-LABEL: _g:
10   %b = alloca inalloca %Foo
11 ; CHECK: pushl   %eax
12 ; CHECK: pushl   %eax
13   %f2 = getelementptr %Foo, ptr %b, i32 0, i32 1
14   store i32 13, ptr %b
15   store i32 42, ptr %f2
16 ; CHECK: movl %esp, %eax
17 ; CHECK: movl    $13, (%eax)
18 ; CHECK: movl    $42, 4(%eax)
19   call x86_stdcallcc void @f(ptr inalloca(%Foo) %b)
20 ; CHECK: calll   _f@8
21 ; CHECK-NOT: %esp
22 ; CHECK: pushl
23 ; CHECK: calll   _i@4
24   call x86_stdcallcc void @i(i32 0)
25   ret void