summaryrefslogtreecommitdiff
path: root/test/catch_member_function_pointer_01.pass.cpp
AgeCommit message (Collapse)Author
2016-05-31[libcxxabi] Introduce a -fno-exceptions libc++abi libary variantAsiri Rathnayake
Currently there is only support for a -fno-exceptions libc++ build. This is problematic for functions such as std::terminate() which are defined in libc++abi and using any of those functions throws away most of the benefits of using -fno-exceptions (code-size). This patch introduces a -fno-exceptions libc++abi build to address this issue. This new variant of libc++abi cannot be linked against any with-exceptions code as some symbols necessary for handling exceptions are missing in this library. Differential revision: http://reviews.llvm.org/D20677 Reviewers: EricWF, mclow.lists, bcraig git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@271267 91177308-0d34-0410-b5e6-96231b3b80d8
2016-01-20Mark some tests as XFAIL with GCC due to compiler bugsEric Fiselier
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@258284 91177308-0d34-0410-b5e6-96231b3b80d8
2015-04-06[libcxxabi] Disallow Base to Derived conversions for catching pointers to ↵Eric Fiselier
members. Summary: I accidentally implemented the 4.11 [conv.mem] conversions for libc++abi in a recent patch. @majnemer pointed out that 5.13 [except.handle] only allows the pointer conversions in 4.10 and not those is 4.11. This patch no longer allows the following example code: ```c++ struct A {}; struct B : public A {}; int main() { try { throw (int A::*)0; } catch (int B::*) { // exception caught here. } } ``` Reviewers: mclow.lists, jroelofs, majnemer Reviewed By: majnemer Subscribers: majnemer, cfe-commits Differential Revision: http://reviews.llvm.org/D8845 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@234254 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-21Rename all of the tests in preparation for merging lit configs with libcxxJonathan Roelofs
http://reviews.llvm.org/D7101 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@226691 91177308-0d34-0410-b5e6-96231b3b80d8