Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxxabi / test / catch_member_function_pointer_02.pass.cpp
blobc4a07c1297dd714c86562a24199e716bb93fa27a
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // Can a noexcept member function pointer be caught by a non-noexcept catch clause?
10 // UNSUPPORTED: c++03, c++11, c++14
11 // UNSUPPORTED: no-exceptions
13 // Support for catching a function pointer including noexcept was shipped in macOS 10.13
14 // XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{9|10|11|12}}
16 // GCC supports noexcept function types but this test still fails.
17 // This is likely a bug in their implementation. Investigation needed.
18 // XFAIL: gcc-13
20 #include <cassert>
22 struct X {
23 template<bool Noexcept> void f() noexcept(Noexcept) {}
25 template<bool Noexcept> using FnType = void (X::*)() noexcept(Noexcept);
27 template<bool ThrowNoexcept, bool CatchNoexcept>
28 void check()
30 try
32 auto p = &X::f<ThrowNoexcept>;
33 throw p;
34 assert(false);
36 catch (FnType<CatchNoexcept> p)
38 assert(ThrowNoexcept || !CatchNoexcept);
39 assert(p == &X::f<ThrowNoexcept>);
41 catch (...)
43 assert(!ThrowNoexcept && CatchNoexcept);
47 void check_deep() {
48 FnType<true> p = &X::f<true>;
49 try
51 throw &p;
53 catch (FnType<false> *q)
55 assert(false);
57 catch (FnType<true> *q)
60 catch (...)
62 assert(false);
66 int main(int, char**)
68 check<false, false>();
69 check<false, true>();
70 check<true, false>();
71 check<true, true>();
72 check_deep();
74 return 0;