aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/exceptions.cpp
AgeCommit message (Expand)Author
2013-02-28Add more of the command line options as attribute flags.Bill Wendling
2013-02-27Reapply r176133 with testcase fixes.Bill Wendling
2013-02-25Revert "Add more attributes from the command line to functions."Anna Zaks
2013-02-25Add more attributes from the command line to functions.Bill Wendling
2013-02-22Update to use references to attribute groups instead of listing the attribute...Bill Wendling
2013-02-20Modify the tests to use attribute group references instead of listing theBill Wendling
2013-02-12Call __cxa_begin_catch with the current exception beforeJohn McCall
2013-02-01Destroy arrays and ARC fields when throwing out of ctors.John McCall
2012-09-25During jump-scope checking, build an ExprWithCleanups immediatelyJohn McCall
2012-06-15It turns out that implementing the rethrow-on-fallthroughJohn McCall
2012-02-16Elide copy construction in new expressions. PR11757.Eli Friedman
2011-11-10Whenever explicitly activating or deactivating a cleanup, weJohn McCall
2011-09-06Rearrange code so that we pass the right pointer to delete[] when an exceptio...Eli Friedman
2011-08-26An initialization does not alias.John McCall
2011-08-26The allocated exception slot does not alias anything; should fix self-host.John McCall
2011-08-11Simplify EH control flow by observing that EH scopes form a simpleJohn McCall
2011-05-28Convert Clang over to resuming from landing pads with llvm.eh.resume.John McCall
2011-03-07The conditional needs to be pushed before the branch. Make the test lessJohn McCall
2011-03-07An operator new with an empty exception specifier returns null on a badJohn McCall
2011-02-28Add -fcxx-exceptions to all tests that use C++ exceptions.Anders Carlsson
2011-02-25Tame an assert; the scope depth of a jump destination does notJohn McCall
2011-02-16Save a copy expression for non-trivial copy constructions of catch variables.John McCall
2011-01-26Fix some obvious bugs in the conditional-cleanup code and then make theJohn McCall
2010-09-17When emitting a new-expression inside a conditional expression,John McCall
2010-09-14Implement the EH cleanup to call 'operator delete' if a new-expression throwsJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-11When an exception needs to be freed by calling __cxa_exception_free, make sur...Anders Carlsson