aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/ErrorHandling.cpp
AgeCommit message (Expand)AuthorFilesLines
2010-11-29Merge System into Support.Michael J. Spencer1-2/+2
2010-11-13report_fatal_error: Simplify a possible ambiguity.Daniel Dunbar1-0/+4
2010-09-16Some versions of gcc still warn about "ignoring return value ... declaredDuncan Sands1-1/+2
2010-08-18Tidy.Dan Gohman1-5/+4
2010-08-17include config.h to get config params, hopefully unbreaking mingw builder.Chris Lattner1-0/+1
2010-08-17report_fatal_error can't use errs(), because errs() can call Chris Lattner1-8/+26
2010-05-08Run interrupt routines as part of report_fatal_error, since we are failingDaniel Dunbar1-0/+7
2010-04-07rename llvm_install_error_handler -> install_fatal_error_handlerChris Lattner1-16/+13
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-5/+5
2010-03-24Fix minor style issues.Dan Gohman1-3/+2
2010-01-05Change errs() to dbgs().David Greene1-4/+5
2009-08-20Add a comment explaining why llvm_unreachable_internal doesn't callDan Gohman1-0/+3
2009-08-12This void is implicit in C++.Dan Gohman1-1/+1
2009-08-10Add support for a user supplied pointer argument to llvm_install_error_handler.Daniel Dunbar1-2/+6
2009-07-24Allow llvm_report_error to accept a Twine.Daniel Dunbar1-3/+12
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin1-1/+1
2009-07-14After converting assert(0) to LLVM_UNREACHABLE we lost file/line location.Torok Edwin1-1/+5
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin1-1/+3
2009-07-07Fix braces.Torok Edwin1-4/+2
2009-07-07Introduce new error handling API.Torok Edwin1-0/+53