Add basic support for SEH, including PROC FRAME Reviewed By: thakis Differential Revision: https://reviews.llvm.org/D86948
19 lines
249 B
Plaintext
19 lines
249 B
Plaintext
# RUN: llvm-ml -m32 -filetype=asm %s | FileCheck %s
|
|
# RUN: llvm-ml -m64 -filetype=asm %s | FileCheck %s
|
|
|
|
.code
|
|
|
|
t1 PROC
|
|
ret
|
|
t1 ENDP
|
|
|
|
; CHECK: .def t1
|
|
; CHECK-NEXT: .scl 2
|
|
; CHECK-NEXT: .type 32
|
|
; CHECK-NEXT: .endef
|
|
|
|
; CHECK: t1:
|
|
; CHECK: ret
|
|
|
|
END
|