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