[WinEH] Add missing test case for llvm.eh.exceptioncode
authorReid Kleckner <rnk@google.com>
Wed, 7 Oct 2015 23:55:06 +0000 (23:55 +0000)
committerReid Kleckner <rnk@google.com>
Wed, 7 Oct 2015 23:55:06 +0000 (23:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249638 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/seh-exception-code.ll [new file with mode: 0644]

diff --git a/test/CodeGen/X86/seh-exception-code.ll b/test/CodeGen/X86/seh-exception-code.ll
new file mode 100644 (file)
index 0000000..28e9361
--- /dev/null
@@ -0,0 +1,41 @@
+; RUN: llc < %s | FileCheck %s
+
+target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-pc-windows-msvc"
+
+declare void @f(i32)
+declare i32 @__C_specific_handler(...)
+declare i32 @llvm.eh.exceptioncode(token)
+
+define void @ehcode() personality i8* bitcast (i32 (...)* @__C_specific_handler to i8*) {
+entry:
+  invoke void @f(i32 0)
+          to label %__try.cont unwind label %catch.dispatch
+
+catch.dispatch:                                   ; preds = %entry
+  %pad = catchpad [i8* null]
+          to label %__except unwind label %catchendblock
+
+__except:                                         ; preds = %catch.dispatch
+  catchret %pad to label %__except.1
+
+__except.1:                                       ; preds = %__except
+  %code = call i32 @llvm.eh.exceptioncode(token %pad)
+  call void @f(i32 %code)
+  br label %__try.cont
+
+__try.cont:                                       ; preds = %entry, %__except.1
+  ret void
+
+catchendblock:                                    ; preds = %catch.dispatch
+  catchendpad unwind to caller
+}
+
+; CHECK-LABEL: ehcode:
+; CHECK: xorl %ecx, %ecx
+; CHECK: callq f
+; CHECK: retq
+
+; CHECK: # %__except
+; CHECK-NEXT: movl %eax, %ecx
+; CHECK-NEXT: callq f