Revert r167620; this can be implemented using an existing CL option.

llvm-svn: 167755
This commit is contained in:
Chad Rosier 2012-11-12 21:32:44 +00:00
parent ad6e96d59c
commit 2b2b38d336
1 changed files with 4 additions and 1 deletions

View File

@ -81,7 +81,10 @@ void llvm::report_fatal_error(const Twine &Reason) {
// files registered with RemoveFileOnSignal.
sys::RunInterruptHandlers();
exit(1);
// When reporting a fatal error, exit with status 70. For BSD systems this
// is defined as an internal software error. This notifies the driver to
// report diagnostics information.
exit(70);
}
void llvm::llvm_unreachable_internal(const char *msg, const char *file,