index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Support
/
ErrorHandling.cpp
Age
Commit message (
Expand
)
Author
2013-03-27
Add a boolean parameter to the llvm::report_fatal_error() function to indicated
Chad Rosier
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-11-13
Revert 167755/167760. We don't want to emit crash diagnostics on command-line...
Chad Rosier
2012-11-12
Revert r167620; this can be implemented using an existing CL option.
Chad Rosier
2011-04-23
Like the coding standards say, do not use "using namespace std".
Jay Foad
2010-11-29
Merge System into Support.
Michael J. Spencer
2010-11-13
report_fatal_error: Simplify a possible ambiguity.
Daniel Dunbar
2010-09-16
Some versions of gcc still warn about "ignoring return value ... declared
Duncan Sands
2010-08-18
Tidy.
Dan Gohman
2010-08-17
include config.h to get config params, hopefully unbreaking mingw builder.
Chris Lattner
2010-08-17
report_fatal_error can't use errs(), because errs() can call
Chris Lattner
2010-05-08
Run interrupt routines as part of report_fatal_error, since we are failing
Daniel Dunbar
2010-04-07
rename llvm_install_error_handler -> install_fatal_error_handler
Chris Lattner
2010-04-07
rename llvm::llvm_report_error -> llvm::report_fatal_error
Chris Lattner
2010-03-24
Fix minor style issues.
Dan Gohman
2010-01-05
Change errs() to dbgs().
David Greene
2009-08-20
Add a comment explaining why llvm_unreachable_internal doesn't call
Dan Gohman
2009-08-12
This void is implicit in C++.
Dan Gohman
2009-08-10
Add support for a user supplied pointer argument to llvm_install_error_handler.
Daniel Dunbar
2009-07-24
Allow llvm_report_error to accept a Twine.
Daniel Dunbar
2009-07-14
llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.
Torok Edwin
2009-07-14
After converting assert(0) to LLVM_UNREACHABLE we lost file/line location.
Torok Edwin
2009-07-11
assert(0) -> LLVM_UNREACHABLE.
Torok Edwin
2009-07-07
Fix braces.
Torok Edwin
2009-07-07
Introduce new error handling API.
Torok Edwin