Home | History | Annotate | Download | only in X86
      1 ; RUN: llc -mtriple=x86_64-pc-windows-coreclr < %s | FileCheck %s
      2 
      3 declare void @ProcessCLRException()
      4 declare i8 addrspace(1)* @llvm.eh.exceptionpointer.p1i8(token)
      5 declare void @f()
      6 declare void @g(i32 addrspace(1)*)
      7 
      8 ; CHECK-LABEL: test1: # @test1
      9 define void @test1() personality i8* bitcast (void ()* @ProcessCLRException to i8*) {
     10 entry:
     11   invoke void @f()
     12     to label %exit unwind label %catch.pad
     13 catch.pad:
     14   %cs1 = catchswitch within none [label %catch.body] unwind to caller
     15 catch.body:
     16   ; CHECK: {{^[^: ]+}}: # %catch.body
     17   ; CHECK: movq %rdx, %rcx
     18   ; CHECK-NEXT: callq g
     19   %catch = catchpad within %cs1 [i32 5]
     20   %exn = call i8 addrspace(1)* @llvm.eh.exceptionpointer.p1i8(token %catch)
     21   %cast_exn = bitcast i8 addrspace(1)* %exn to i32 addrspace(1)*
     22   call void @g(i32 addrspace(1)* %cast_exn) [ "funclet"(token %catch) ]
     23   catchret from %catch to label %exit
     24 exit:
     25   ret void
     26 }
     27