index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CGException.h
Age
Commit message (
Expand
)
Author
2012-02-08
CodeGen: Move EHPersonality from CGException.h into the cpp file, it has no o...
Benjamin Kramer
2011-07-20
now that we have a centralized place to do so, add some using declarations for
Chris Lattner
2011-03-20
Fix Objective-C++ exceptions (GNU runtime).
David Chisnall
2011-01-28
Move all the cleanups framework code into a single file.
John McCall
2010-11-07
ARM EH uses a different personality function in C.
John McCall
2010-09-16
Opportunistically use the C++ personality function in ObjC++
John McCall
2010-09-14
Implement the EH cleanup to call 'operator delete' if a new-expression throws
John McCall
2010-08-14
More cleanup enabling.
John McCall
2010-08-13
Sketch out a framework for delaying the activation of a cleanup.
John McCall
2010-07-23
Revise cleanup IR generation to fix a major bug with cleanups (PR7686)
John McCall
2010-07-21
Rename LazyCleanup -> Cleanup. No functionality change for these last three
John McCall
2010-07-21
Rip out EHCleanupScope.
John McCall
2010-07-17
The GNU-runtime ObjC personality function doesn't let us rethrow with URR for
John McCall
2010-07-13
Teach IR generation how to lazily emit cleanups. This has a lot of advantages,
John McCall
2010-07-06
Validated by nightly-test runs on x86 and x86-64 darwin, including after
John McCall