2016-02-25 01:02:45 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-pc-windows-msvc -mconstructor-aliases -fexceptions -fcxx-exceptions -fms-compatibility-version=18.00 | FileCheck -check-prefix=MSVC2013 -check-prefix=CHECK %s
|
|
|
|
// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-pc-windows-msvc -mconstructor-aliases -fexceptions -fcxx-exceptions -fms-compatibility-version=19.00 | FileCheck -check-prefix=MSVC2015 -check-prefix=CHECK %s
|
2015-05-11 05:38:26 +08:00
|
|
|
|
|
|
|
void may_throw();
|
|
|
|
void never_throws() noexcept(true) {
|
|
|
|
may_throw();
|
|
|
|
}
|
|
|
|
|
2015-10-08 09:13:52 +08:00
|
|
|
// CHECK-LABEL: define void @"\01?never_throws@@YAXXZ"()
|
|
|
|
// CHECK-SAME: personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*)
|
2015-05-11 05:38:26 +08:00
|
|
|
// CHECK: invoke void @"\01?may_throw@@YAXXZ"()
|
2016-02-25 01:02:45 +08:00
|
|
|
// CHECK: %[[cp:.*]] = cleanuppad within none []
|
2015-12-15 02:34:18 +08:00
|
|
|
// MSVC2013: call void @"\01?terminate@@YAXXZ"()
|
|
|
|
// MSVC2015: call void @__std_terminate()
|
2016-02-25 01:02:45 +08:00
|
|
|
// CHECK-SAME: [ "funclet"(token %[[cp]]) ]
|
2015-05-11 05:38:26 +08:00
|
|
|
// CHECK-NEXT: unreachable
|