https://llvm.org/bugs/show_bug.cgi?id=28639
Bug ID: 28639 Summary: noexcept feature for function has not been supported Product: clang Version: 3.9 Hardware: PC OS: Linux Status: NEW Severity: normal Priority: P Component: C++11 Assignee: unassignedclangb...@nondot.org Reporter: westion...@gmail.com CC: dgre...@apple.com, llvm-bugs@lists.llvm.org Classification: Unclassified I wonder whether it is a feature clang does not want to support or a bug? #include <exception> extern "C" void exit(int); void operator delete(void*) noexcept(true) { throw -59; } void g() { exit(0); } int main() { std::set_terminate(g); try { delete (char*)0; } catch (...) { return 1; } return 1; } expected return code: 0; actual return code: 1; -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs