
Test updates were performed using: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only the test updates where the test passed without further modification (which is almost all of them, as the backend is largely pointer-type agnostic).
21 lines
553 B
LLVM
21 lines
553 B
LLVM
; RUN: llc < %s -mtriple=i686-pc-win32 | FileCheck %s
|
|
|
|
%Foo = type { i32, i32 }
|
|
|
|
declare x86_stdcallcc void @foo_byref_stdcall_p(ptr byref(%Foo))
|
|
declare x86_stdcallcc void @i(i32)
|
|
|
|
; byref does not imply a stack copy, so this should append 4 bytes,
|
|
; not 8.
|
|
define void @stdcall(ptr %value) {
|
|
; CHECK-LABEL: _stdcall:
|
|
; CHECK: pushl 4(%esp)
|
|
; CHECK: calll _foo_byref_stdcall_p@4
|
|
call x86_stdcallcc void @foo_byref_stdcall_p(ptr byref(%Foo) %value)
|
|
; CHECK-NOT: %esp
|
|
; CHECK: pushl
|
|
; CHECK: calll _i@4
|
|
call x86_stdcallcc void @i(i32 0)
|
|
ret void
|
|
}
|