[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / statepoint-invoke-unwind.ll
blobeb4b6bde15d421824686d444982c8cb3f1cf0c7e
1 ; RUN: opt < %s -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S | FileCheck %s
2 ; Test that statepoint intrinsic is marked with Throwable attribute and it is
3 ; not optimized into call
5 declare ptr addrspace(1) @gc_call()
6 declare token @llvm.experimental.gc.statepoint.p0(i64, i32, ptr addrspace(1) ()*, i32, i32, ...)
7 declare ptr @fake_personality_function()
9 define i32 @test() gc "statepoint-example" personality ptr @fake_personality_function {
10 ; CHECK-LABEL: test
11 entry:
12   ; CHECK-LABEL: entry:
13   ; CHECK-NEXT: %sp = invoke token (i64, i32, ptr, i32, i32, ...) @llvm.experimental.gc.statepoint.p0
14   %sp = invoke token (i64, i32, ptr, i32, i32, ...) @llvm.experimental.gc.statepoint.p0(i64 0, i32 0, ptr elementtype(ptr addrspace(1) ()) @gc_call, i32 0, i32 0, i32 0, i32 0)
15                 to label %normal unwind label %exception
17 exception:
18   %lpad = landingpad { ptr, i32 }
19           cleanup
20   ret i32 0
22 normal:
23   ret i32 1