brintos

brintos / llvm-project-archived public Read only

0
0
Text · 796 B · 7c0005e Raw
26 lines · plain
1; RUN: llc -mtriple=x86_64-pc-windows-coreclr < %s | FileCheck %s2 3declare void @ProcessCLRException()4declare ptr addrspace(1) @llvm.eh.exceptionpointer.p1(token)5declare void @f()6declare void @g(ptr addrspace(1))7 8; CHECK-LABEL: test1: # @test19define void @test1() personality ptr @ProcessCLRException {10entry:11  invoke void @f()12    to label %exit unwind label %catch.pad13catch.pad:14  %cs1 = catchswitch within none [label %catch.body] unwind to caller15catch.body:16  ; CHECK: {{^[^: ]+}}: # %catch.body17  ; CHECK: movq %rdx, %rcx18  ; CHECK-NEXT: callq g19  %catch = catchpad within %cs1 [i32 5]20  %exn = call ptr addrspace(1) @llvm.eh.exceptionpointer.p1(token %catch)21  call void @g(ptr addrspace(1) %exn) [ "funclet"(token %catch) ]22  catchret from %catch to label %exit23exit:24  ret void25}26