diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/X86/swiftcc.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/swiftcc.ll b/llvm/test/CodeGen/X86/swiftcc.ll new file mode 100644 index 00000000000..dc36ee247f1 --- /dev/null +++ b/llvm/test/CodeGen/X86/swiftcc.ll @@ -0,0 +1,11 @@ +; RUN: llc -mtriple x86_64-unknown-windows-msvc -filetype asm -o - %s | FileCheck %s + +define swiftcc void @f() { + %1 = alloca i8 + ret void +} + +; CHECK-LABEL: f +; CHECK: .seh_stackalloc 8 +; CHECK: .seh_endprologue + |