You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
283 B
12 lines
283 B
4 months ago
|
// RUN: not llvm-mc -triple x86_64-pc-win32 -filetype=obj %s -o %t.o 2>&1 | FileCheck %s
|
||
|
|
||
|
// CHECK: Allocation size must be non-zero!
|
||
|
|
||
|
.globl smallFunc
|
||
|
.def smallFunc; .scl 2; .type 32; .endef
|
||
|
.seh_proc smallFunc
|
||
|
.seh_stackalloc 0
|
||
|
smallFunc:
|
||
|
ret
|
||
|
.seh_endproc
|