summaryrefslogtreecommitdiffstats
path: root/libcxxabi/test/catch_member_function_pointer_01.pass.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Mark some tests as XFAIL with GCC due to compiler bugsEric Fiselier2016-01-201-0/+3
| | | | llvm-svn: 258284
* [libcxxabi] Disallow Base to Derived conversions for catching pointers to ↵Eric Fiselier2015-04-061-0/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 llvm-svn: 234254
* Rename all of the tests in preparation for merging lit configs with libcxxJonathan Roelofs2015-01-211-0/+57
http://reviews.llvm.org/D7101 llvm-svn: 226691
OpenPOWER on IntegriCloud