2 ; RUN: llvm-as -o %t.obj %s
3 ; RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %T/lto-chkstk-foo.obj %S/Inputs/lto-chkstk-foo.s
4 ; RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %T/lto-chkstk-chkstk.obj %S/Inputs/lto-chkstk-chkstk.s
6 ; RUN: llvm-ar cru %t.lib %T/lto-chkstk-chkstk.obj
7 ; RUN: lld-link /out:%t.exe /entry:main /subsystem:console %t.obj %T/lto-chkstk-foo.obj %t.lib
9 target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
10 target triple = "x86_64-pc-windows-msvc"
14 %array4096 = alloca [4096 x i8]
15 call void @foo(ptr %array4096)
19 declare void @foo(ptr)