Louis Dionne | 549048f | 2019-04-18 17:18:15 +0000 | [diff] [blame^] | 1 | //===------------------- uncaught_exceptions.pass.cpp ---------------------===// |
| 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 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | // UNSUPPORTED: libcxxabi-no-exceptions |
| 10 | |
| 11 | // This tests that libc++abi still provides __cxa_uncaught_exception() for |
| 12 | // ABI compatibility, even though the Standard doesn't require it to. |
| 13 | // |
| 14 | // We need to explicitly link against libc++abi, because libc++ does not |
| 15 | // re-export this symbol. |
| 16 | |
| 17 | // RUN: %build -lc++abi -o %t.exe |
| 18 | // RUN: %t.exe |
| 19 | |
| 20 | #include <cxxabi.h> |
| 21 | #include <cassert> |
| 22 | |
| 23 | // namespace __cxxabiv1 { |
| 24 | // extern bool __cxa_uncaught_exception () throw(); |
| 25 | // } |
| 26 | |
| 27 | struct A { |
| 28 | ~A() { assert( __cxxabiv1::__cxa_uncaught_exception()); } |
| 29 | }; |
| 30 | |
| 31 | int main () { |
| 32 | try { A a; throw 3; assert(false); } |
| 33 | catch (int) {} |
| 34 | } |