From 309213279e5d95826d97b2ab2178db5ddea0ed80 Mon Sep 17 00:00:00 2001 From: Charles Davis Date: Wed, 25 May 2011 01:33:42 +0000 Subject: Add a test for the .seh_handler directive. Fix problems with the parsing method exposed by the test. While we're at it, simplify the .seh_proc parsing method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132028 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/AsmParser/directive_seh.s | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'test/MC') diff --git a/test/MC/AsmParser/directive_seh.s b/test/MC/AsmParser/directive_seh.s index 5fd2efad39..7111fcc6b2 100644 --- a/test/MC/AsmParser/directive_seh.s +++ b/test/MC/AsmParser/directive_seh.s @@ -1,8 +1,9 @@ # RUN: llvm-mc -triple x86_64-pc-win32 %s | FileCheck %s # CHECK: .seh_proc func -# CHECK: .seh_stackalloc 8 +# CHECK: .seh_stackalloc 24 # CHECK: .seh_endprologue +# CHECK: .seh_handler __C_specific_handler, @except # CHECK: .seh_endproc .text @@ -10,9 +11,10 @@ .def func; .scl 2; .type 32; .endef .seh_proc func func: - subq $8, %rsp - .seh_stackalloc 8 + subq $24, %rsp + .seh_stackalloc 24 .seh_endprologue - addq $8, %rsp + .seh_handler __C_specific_handler, @except + addq $24, %rsp ret .seh_endproc -- cgit v1.2.3