1 // RUN: %clang_cc1 -triple x86_64-windows -fasync-exceptions -fcxx-exceptions -fexceptions -fms-extensions -x c++ -Wno-implicit-function-declaration -emit-llvm %s -o - | FileCheck %s
3 // CHECK: define dso_local void @"?crash@@YAXH@Z
4 // CHECK: invoke void @llvm.seh.try.begin()
5 // CHECK: invoke void @llvm.seh.scope.begin()
6 // CHECK: invoke void @llvm.seh.scope.end()
8 // CHECK: %[[dst:[0-9-]+]] = catchswitch within none [label %catch] unwind to caller
9 // CHECK: %[[dst1:[0-9-]+]] = catchpad within %[[dst]] [ptr null, i32 0, ptr null]
10 // CHECK: "funclet"(token %[[dst1]])
12 // CHECK: define dso_local void @"?bar@@YAXXZ
13 // CHECK: invoke void @llvm.seh.try.begin()
14 // CHECK: invoke void @_CxxThrowException
15 // CHECK: %[[dst:[0-9-]+]] = catchpad within %0 [ptr null, i32 0, ptr null]
16 // CHECK: invoke void @llvm.seh.try.begin() [ "funclet"(token %[[dst]]) ]
18 // CHECK: invoke void @llvm.seh.try.begin()
19 // CHECK: %[[src:[0-9-]+]] = load volatile i32, ptr %i
20 // CHECK-NEXT: invoke void @"?crash@@YAXH@Z"(i32 noundef %[[src]])
21 // CHECK: invoke void @llvm.seh.try.end()
23 // CHECK: invoke void @llvm.seh.try.begin()
24 // CHECK: invoke void @"?bar@@YAXXZ"()
25 // CHECK: invoke void @llvm.seh.try.end()
27 // *****************************************************************************
28 // Abstract: Test CPP catch(...) under SEH -EHa option
31 int volatile *NullPtr
= 0;
42 printf(" in A ctor \n");
47 printf(" in A dtor \n");
53 printf(" in catch(...) funclet \n");
72 for (int i
= 0; i
< 2; i
++) {
76 printf(" Test CPP unwind: in except handler i = %d \n", i
);
82 printf("Test CPP unwind: in except handler \n");