aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/inreg.ll
blob: 89810339a6c03a76c8692988822f13a957010bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llc < %s -march=x86 | FileCheck %s

%struct.s = type { double, float }

define void @g() nounwind {
entry:
  %tmp = alloca %struct.s, align 4
  call void @f(%struct.s* inreg sret %tmp, i32 inreg 41, i32 inreg 42, i32 43)
  ret void
  ; CHECK: g:
  ; CHECK: subl {{.*}}, %esp
  ; CHECK-NEXT: $43, (%esp)
  ; CHECK-NEXT: leal    16(%esp), %eax
  ; CHECK-NEXT: movl    $41, %edx
  ; CHECK-NEXT: movl    $42, %ecx
  ; CHECK-NEXT: calll   f
}

declare void @f(%struct.s* inreg sret, i32 inreg, i32 inreg, i32)