Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / WinEH / wineh-intrinsics.ll
blobd62799ec38427fe169911f53ce069575b9a5b0ce
1 ; RUN: opt -passes=lint -disable-output < %s
3 ; This test is meant to prove that the verifier does not report errors for correct
4 ; use of the llvm.eh.exceptionpointer intrinsic.
6 target triple = "x86_64-pc-windows-msvc"
8 declare ptr @llvm.eh.exceptionpointer.p0(token)
9 declare ptr addrspace(1) @llvm.eh.exceptionpointer.p1(token)
11 declare void @f(...)
13 define void @test1() personality ptr @__CxxFrameHandler3 {
14 entry:
15   invoke void (...) @f(i32 1)
16      to label %exit unwind label %catchpad
17 catchpad:
18   %cs1 = catchswitch within none [label %do_catch] unwind to caller
19 do_catch:
20   %catch = catchpad within %cs1 [i32 1]
21   %exn = call ptr @llvm.eh.exceptionpointer.p0(token %catch)
22   call void (...) @f(ptr %exn)
23   catchret from %catch to label %exit
24 exit:
25   ret void
28 define void @test2() personality ptr @ProcessManagedException {
29 entry:
30   invoke void (...) @f(i32 1)
31      to label %exit unwind label %catchpad
32 catchpad:
33   %cs1 = catchswitch within none [label %do_catch] unwind to caller
34 do_catch:
35   %catch = catchpad within %cs1 [i32 1]
36   %exn = call ptr addrspace(1) @llvm.eh.exceptionpointer.p1(token %catch)
37   call void (...) @f(ptr addrspace(1) %exn)
38   catchret from %catch to label %exit
39 exit:
40   ret void
43 declare i32 @__CxxFrameHandler3(...)
44 declare i32 @ProcessManagedException(...)